public static enum Connector.ConnectorType extends java.lang.Enum<Connector.ConnectorType>
| Enum Constant and Description |
|---|
AND
And connector
|
OR
Or connector
|
XOR
Xor connector
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getLongName() |
java.lang.String |
getShortName() |
static Connector.ConnectorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Connector.ConnectorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Connector.ConnectorType AND
public static final Connector.ConnectorType XOR
public static final Connector.ConnectorType OR
public static Connector.ConnectorType[] values()
for (Connector.ConnectorType c : Connector.ConnectorType.values()) System.out.println(c);
public static Connector.ConnectorType 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 getShortName()
public java.lang.String getLongName()