Enum NFEConnectivityRule.ConnectivityRuleType
- java.lang.Object
-
- java.lang.Enum<NFEConnectivityRule.ConnectivityRuleType>
-
- oracle.spatial.network.nfe.model.rule.NFEConnectivityRule.ConnectivityRuleType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<NFEConnectivityRule.ConnectivityRuleType>
- Enclosing class:
- NFEConnectivityRule
public static enum NFEConnectivityRule.ConnectivityRuleType extends java.lang.Enum<NFEConnectivityRule.ConnectivityRuleType>
Defines connectivity rule types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LINE_LINELine-line rule typeLINE_POINTLine-point rule type
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NFEConnectivityRule.ConnectivityRuleTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static NFEConnectivityRule.ConnectivityRuleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINE_LINE
public static final NFEConnectivityRule.ConnectivityRuleType LINE_LINE
Line-line rule type
-
LINE_POINT
public static final NFEConnectivityRule.ConnectivityRuleType LINE_POINT
Line-point rule type
-
-
Method Detail
-
values
public static NFEConnectivityRule.ConnectivityRuleType[] 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 (NFEConnectivityRule.ConnectivityRuleType c : NFEConnectivityRule.ConnectivityRuleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NFEConnectivityRule.ConnectivityRuleType 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
-
-