return "ClMetadata";
}
@NotNull
public List<ClKeyword> getKeys() {
ClMap map = getUnderlyingMap();
if (map == null) return Collections.emptyList();
return ContainerUtil.map(map.getEntries(), new Function<ClMapEntry, ClKeyword>() {
public ClKeyword fun(ClMapEntry clMapEntry) {
return clMapEntry.getKeywordKey();
}
});
}