public static String getChildString(IMetaStoreAttribute attribute, String id) { IMetaStoreAttribute child = attribute.getChild(id); if (child == null) { return null; } return getAttributeString(child); }
public static String getAttributeString(IMetaStoreAttribute attribute) { if (attribute.getValue() == null) { return null; } return attribute.getValue().toString(); }