Package org.fudgemsg.taxonomy

Examples of org.fudgemsg.taxonomy.FudgeTaxonomy


    return fieldName;
  }

  private String getFieldNameByOrdinal(final Integer ordinal, final int taxonomyId) {
    String result = ordinal.toString();
    FudgeTaxonomy taxonomy = getTaxonomy(taxonomyId);
    if (taxonomy != null) {
      String fieldName = taxonomy.getFieldName(ordinal);
      if (fieldName != null) {
        result = fieldName;
      }
    }
    return result;
View Full Code Here

TOP

Related Classes of org.fudgemsg.taxonomy.FudgeTaxonomy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.