Package org.hl7.fhir.r4.utils
Enum NPMPackageGenerator.Category
- java.lang.Object
-
- java.lang.Enum<NPMPackageGenerator.Category>
-
- org.hl7.fhir.r4.utils.NPMPackageGenerator.Category
-
- All Implemented Interfaces:
Serializable,Comparable<NPMPackageGenerator.Category>
- Enclosing class:
- NPMPackageGenerator
public static enum NPMPackageGenerator.Category extends Enum<NPMPackageGenerator.Category>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NPMPackageGenerator.CategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static NPMPackageGenerator.Category[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOURCE
public static final NPMPackageGenerator.Category RESOURCE
-
EXAMPLE
public static final NPMPackageGenerator.Category EXAMPLE
-
OPENAPI
public static final NPMPackageGenerator.Category OPENAPI
-
SCHEMATRON
public static final NPMPackageGenerator.Category SCHEMATRON
-
RDF
public static final NPMPackageGenerator.Category RDF
-
OTHER
public static final NPMPackageGenerator.Category OTHER
-
TOOL
public static final NPMPackageGenerator.Category TOOL
-
TEMPLATE
public static final NPMPackageGenerator.Category TEMPLATE
-
JEKYLL
public static final NPMPackageGenerator.Category JEKYLL
-
-
Method Detail
-
values
public static NPMPackageGenerator.Category[] 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 (NPMPackageGenerator.Category c : NPMPackageGenerator.Category.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NPMPackageGenerator.Category 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
-
-