Package org.datanucleus.metadata
Enum MetadataFileType
- java.lang.Object
-
- java.lang.Enum<MetadataFileType>
-
- org.datanucleus.metadata.MetadataFileType
-
- All Implemented Interfaces:
Serializable,Comparable<MetadataFileType>
public enum MetadataFileType extends Enum<MetadataFileType>
Enum for the different types of metadata "files".
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATIONSJDO_FILEJDO_ORM_FILEJDO_QUERY_FILEJPA_MAPPING_FILE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static MetadataFileTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MetadataFileType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JDO_FILE
public static final MetadataFileType JDO_FILE
-
JDO_ORM_FILE
public static final MetadataFileType JDO_ORM_FILE
-
JDO_QUERY_FILE
public static final MetadataFileType JDO_QUERY_FILE
-
ANNOTATIONS
public static final MetadataFileType ANNOTATIONS
-
JPA_MAPPING_FILE
public static final MetadataFileType JPA_MAPPING_FILE
-
-
Method Detail
-
values
public static MetadataFileType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MetadataFileType c : MetadataFileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetadataFileType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<MetadataFileType>
-
-