Package org.goplanit.output.enums
Enum PathOutputIdentificationType
- java.lang.Object
-
- java.lang.Enum<PathOutputIdentificationType>
-
- org.goplanit.output.enums.PathOutputIdentificationType
-
- All Implemented Interfaces:
Serializable
,Comparable<PathOutputIdentificationType>
public enum PathOutputIdentificationType extends Enum<PathOutputIdentificationType>
Enumeration of possible Id types used to identify a Path- Author:
- gman6028
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LINK_SEGMENT_EXTERNAL_ID
LINK_SEGMENT_ID
LINK_SEGMENT_XML_ID
NODE_EXTERNAL_ID
NODE_ID
NODE_XML_ID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PathOutputIdentificationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static PathOutputIdentificationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINK_SEGMENT_XML_ID
public static final PathOutputIdentificationType LINK_SEGMENT_XML_ID
-
LINK_SEGMENT_EXTERNAL_ID
public static final PathOutputIdentificationType LINK_SEGMENT_EXTERNAL_ID
-
LINK_SEGMENT_ID
public static final PathOutputIdentificationType LINK_SEGMENT_ID
-
NODE_EXTERNAL_ID
public static final PathOutputIdentificationType NODE_EXTERNAL_ID
-
NODE_XML_ID
public static final PathOutputIdentificationType NODE_XML_ID
-
NODE_ID
public static final PathOutputIdentificationType NODE_ID
-
-
Method Detail
-
values
public static PathOutputIdentificationType[] 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 (PathOutputIdentificationType c : PathOutputIdentificationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PathOutputIdentificationType 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
-
-