示例#1
0
 public static String getEdgeLabel(ITypedInstance typedInstance, AttributeInfo aInfo)
     throws AtlasException {
   IDataType dataType = typeSystem.getDataType(IDataType.class, typedInstance.getTypeName());
   return getEdgeLabel(dataType, aInfo);
 }
示例#2
0
 public static String getQualifiedFieldName(
     ITypedInstance typedInstance, AttributeInfo attributeInfo) throws AtlasException {
   IDataType dataType = typeSystem.getDataType(IDataType.class, typedInstance.getTypeName());
   return getQualifiedFieldName(dataType, attributeInfo.name);
 }