Enum Configuration.PathKind
- java.lang.Object
-
- java.lang.Enum<Configuration.PathKind>
-
- net.ssehub.easy.producer.core.persistence.Configuration.PathKind
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Configuration.PathKind>
- Enclosing class:
- Configuration
public static enum Configuration.PathKind extends java.lang.Enum<Configuration.PathKind>
Defines the supported paths.- Author:
- Holger Eichelberger
-
-
Constructor Summary
Constructors Modifier Constructor Description privatePathKind()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Configuration.PathKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Configuration.PathKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IVML
public static final Configuration.PathKind IVML
The path to the IVML models.
-
VIL
public static final Configuration.PathKind VIL
The path to the VIL models.
-
VTL
public static final Configuration.PathKind VTL
The path to the VTL models.
-
-
Method Detail
-
values
public static Configuration.PathKind[] 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 (Configuration.PathKind c : Configuration.PathKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Configuration.PathKind valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-