comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/transaction/DefaultTreeNodeAttribute.java @ 141:3071b1a471fd

add getKeys
author one
date Tue, 11 Nov 2014 18:57:52 +0900
parents 98e256d9fd57
children 0854f9a9e81d 371b6ddb78f2
comparison
equal deleted inserted replaced
140:99bda30ea72c 141:3071b1a471fd
85 ByteBuffer attribute = get(key); 85 ByteBuffer attribute = get(key);
86 if (attribute != null) 86 if (attribute != null)
87 return new String(attribute.array()); 87 return new String(attribute.array());
88 return null; 88 return null;
89 } 89 }
90
91 @Override
92 public List<String> getKeys() {
93 return attrs.keys();
94 }
90 } 95 }