Esempio n. 1
0
  public static String getChildString(IMetaStoreAttribute attribute, String id) {
    IMetaStoreAttribute child = attribute.getChild(id);
    if (child == null) {
      return null;
    }

    return getAttributeString(child);
  }
Esempio n. 2
0
 public static String getAttributeString(IMetaStoreAttribute attribute) {
   if (attribute.getValue() == null) {
     return null;
   }
   return attribute.getValue().toString();
 }