Package jmri.jmrit.logixng.expressions
Enum ExpressionReference.PointsTo
- java.lang.Object
-
- java.lang.Enum<ExpressionReference.PointsTo>
-
- jmri.jmrit.logixng.expressions.ExpressionReference.PointsTo
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ExpressionReference.PointsTo>
- Enclosing class:
- ExpressionReference
public static enum ExpressionReference.PointsTo extends java.lang.Enum<ExpressionReference.PointsTo>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Audio
Light
LogixNGTable
Memory
Nothing
Sensor
SignalHead
SignalMast
Turnout
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static ExpressionReference.PointsTo
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExpressionReference.PointsTo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Nothing
public static final ExpressionReference.PointsTo Nothing
-
Audio
public static final ExpressionReference.PointsTo Audio
-
Light
public static final ExpressionReference.PointsTo Light
-
Memory
public static final ExpressionReference.PointsTo Memory
-
Sensor
public static final ExpressionReference.PointsTo Sensor
-
SignalHead
public static final ExpressionReference.PointsTo SignalHead
-
SignalMast
public static final ExpressionReference.PointsTo SignalMast
-
Turnout
public static final ExpressionReference.PointsTo Turnout
-
LogixNGTable
public static final ExpressionReference.PointsTo LogixNGTable
-
-
Method Detail
-
values
public static ExpressionReference.PointsTo[] 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 (ExpressionReference.PointsTo c : ExpressionReference.PointsTo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpressionReference.PointsTo 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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<ExpressionReference.PointsTo>
-
-