Enum TagPathComponent.Type
- java.lang.Object
-
- java.lang.Enum<TagPathComponent.Type>
-
- com.inductiveautomation.ignition.common.tags.paths.parser.TagPathComponent.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TagPathComponent.Type>
- Enclosing class:
- TagPathComponent
public static enum TagPathComponent.Type extends java.lang.Enum<TagPathComponent.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARRAY_INDEX
IDENTIFIER
PATH_SEPARATOR
PROPERTY_SEPARATOR
REL_DIR_UP
SOURCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TagPathComponent.Type
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static TagPathComponent.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PATH_SEPARATOR
public static final TagPathComponent.Type PATH_SEPARATOR
-
IDENTIFIER
public static final TagPathComponent.Type IDENTIFIER
-
PROPERTY_SEPARATOR
public static final TagPathComponent.Type PROPERTY_SEPARATOR
-
SOURCE
public static final TagPathComponent.Type SOURCE
-
REL_DIR_UP
public static final TagPathComponent.Type REL_DIR_UP
-
ARRAY_INDEX
public static final TagPathComponent.Type ARRAY_INDEX
-
-
Method Detail
-
values
public static TagPathComponent.Type[] 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 (TagPathComponent.Type c : TagPathComponent.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TagPathComponent.Type 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
-
-