Java/Method
Map.Entry Interface
The_j.n
2015. 8. 19. 03:59
Method | Explain |
boolean equals(Object o) | 동일한 Entry인지 비교 |
Object getKey() | Entry의 key 객체를 반환 |
Object getValue() | Entry의 value 객체를 반환 |
int hashCode() | Entry의 Hash Code를 반환 |
Object setValue(Object value) | Entry의 Value 객체를 지정된 객체로 변경 |