Examples of OCMetadataEnumValueCollection


Examples of com.ipc.oce.metadata.collection.OCMetadataEnumValueCollection

    OCMetadataEnumCollection enumCollection = cfg.getEnums();
    for (OCEnumMetadataObject metaEnum : enumCollection) {
      String name = metaEnum.getName();
      name = metaEnum.getFullName();
      System.out.println(name);
      OCMetadataEnumValueCollection enumValCollection = metaEnum.getEnumValues();
      for (OCEnumValueMetadataObject valMeta : enumValCollection) {
        System.out.println("\t" + valMeta.getName());
      }
      break; // enough
    }
View Full Code Here

Examples of com.ipc.oce.metadata.collection.OCMetadataEnumValueCollection

   *
   * @return
   * @throws JIException
   */
  public OCMetadataEnumValueCollection getEnumValues() throws JIException {
    return new OCMetadataEnumValueCollection(get("EnumValues"));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.