public enum PipelineIOIdentifier extends java.lang.Enum<PipelineIOIdentifier>
PipelinedComparatorS9.| Enum Constant and Description |
|---|
INPUT_A
Identifies the first, or 'A' input of the comparator pipeline and its associated filter chain.
|
INPUT_B
Identifies the second, or 'B' input of the comparator pipeline and its associated filter chain.
|
RESULT
Identifies the output of the comparator pipeline or its associated filter chain.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Returns a String representation of the enumeration.
|
static PipelineIOIdentifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PipelineIOIdentifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipelineIOIdentifier INPUT_A
public static final PipelineIOIdentifier INPUT_B
public static final PipelineIOIdentifier RESULT
public static PipelineIOIdentifier[] values()
for (PipelineIOIdentifier c : PipelineIOIdentifier.values()) System.out.println(c);
public static PipelineIOIdentifier valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<PipelineIOIdentifier>