Package org.hl7.fhir.utilities.npm
Enum PackageGenerator.PackageType
- java.lang.Object
-
- java.lang.Enum<PackageGenerator.PackageType>
-
- org.hl7.fhir.utilities.npm.PackageGenerator.PackageType
-
- All Implemented Interfaces:
Serializable,Comparable<PackageGenerator.PackageType>
- Enclosing class:
- PackageGenerator
public static enum PackageGenerator.PackageType extends Enum<PackageGenerator.PackageType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFORMANCECOREEXAMPLESGROUPIGIG_TEMPLATETOOL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCode()static PackageGenerator.PackageTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PackageGenerator.PackageType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONFORMANCE
public static final PackageGenerator.PackageType CONFORMANCE
-
IG
public static final PackageGenerator.PackageType IG
-
CORE
public static final PackageGenerator.PackageType CORE
-
EXAMPLES
public static final PackageGenerator.PackageType EXAMPLES
-
GROUP
public static final PackageGenerator.PackageType GROUP
-
TOOL
public static final PackageGenerator.PackageType TOOL
-
IG_TEMPLATE
public static final PackageGenerator.PackageType IG_TEMPLATE
-
-
Method Detail
-
values
public static PackageGenerator.PackageType[] 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 (PackageGenerator.PackageType c : PackageGenerator.PackageType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PackageGenerator.PackageType 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
-
-