コード例 #1
0
ファイル: IfcUnitEnum.java プロジェクト: fantine16/BIMserver
 /**
  * Returns the '<em><b>Ifc Unit Enum</b></em>' literal with the specified name.
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  *
  * @param name the name.
  * @return the matching enumerator or <code>null</code>.
  * @generated
  */
 public static IfcUnitEnum getByName(String name) {
   for (int i = 0; i < VALUES_ARRAY.length; ++i) {
     IfcUnitEnum result = VALUES_ARRAY[i];
     if (result.getName().equals(name)) {
       return result;
     }
   }
   return null;
 }
コード例 #2
0
ファイル: IfcUnitEnum.java プロジェクト: fantine16/BIMserver
 /**
  * Returns the '<em><b>Ifc Unit Enum</b></em>' literal with the specified literal value.
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  *
  * @param literal the literal.
  * @return the matching enumerator or <code>null</code>.
  * @generated
  */
 public static IfcUnitEnum get(String literal) {
   for (int i = 0; i < VALUES_ARRAY.length; ++i) {
     IfcUnitEnum result = VALUES_ARRAY[i];
     if (result.toString().equals(literal)) {
       return result;
     }
   }
   return null;
 }