hefeixia
2021-02-18 5b8c95c760840f09910730943b21391e47187315
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package frame.object.data;
 
import java.util.HashMap;
import java.util.Map;
 
import frame.object.meta.EntityMeta;
 
 
public class Index implements IIndex {
    
    private String dataName;
    private String fieldName;
    private Map<Object, Entity> maps;
 
    
    public Index(String dataName, String fieldName) {
        maps = new HashMap<Object, Entity>();
        
        this.dataName = dataName;
        this.fieldName = fieldName;
    }
 
    public void load(EntitySet entitySet) {
        EntityMeta meta = entitySet.getEntityMeta();
        int index = meta.getIndex(fieldName);
        
        for (Entity entity: entitySet) {
            Object value = entity.getValue(index);
            
            if (value == null) {
                continue;
            }
            
            maps.put(value, entity);
        }
    }
    
    public void add(Object value, Entity entity) {
        if (value == null) {
            return;
        }
        
        maps.put(value, entity);
    }
    
    public Entity get(Object value) {
        if (value == null) {
            return null;
        }
        
        return maps.get(value);
    }
 
    public String getName() {
        return dataName + "." + fieldName;
    }
}