home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- class Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry implements Map.Entry {
- // $FF: renamed from: e java.util.Map.Entry
- private Map.Entry field_0;
-
- Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry(Map.Entry var1) {
- this.field_0 = var1;
- }
-
- public Object getKey() {
- return this.field_0.getKey();
- }
-
- public Object getValue() {
- return this.field_0.getValue();
- }
-
- public Object setValue(Object var1) {
- throw new UnsupportedOperationException();
- }
-
- public int hashCode() {
- return this.field_0.hashCode();
- }
-
- public boolean equals(Object var1) {
- if (!(var1 instanceof Map.Entry)) {
- return false;
- } else {
- Map.Entry var2 = (Map.Entry)var1;
- return Collections.access$100(this.field_0.getKey(), var2.getKey()) && Collections.access$100(this.field_0.getValue(), var2.getValue());
- }
- }
-
- public String toString() {
- return this.field_0.toString();
- }
- }
-