public enum NodeProxyType extends java.lang.Enum<NodeProxyType>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isInput() |
static boolean |
isInput(NodeProxyType value) |
boolean |
isOutput() |
static boolean |
isOutput(NodeProxyType value) |
boolean |
same(java.lang.Object other) |
static NodeProxyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeProxyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeProxyType IN
public static final NodeProxyType OUT
public static final NodeProxyType INOUT
public static NodeProxyType[] values()
for (NodeProxyType c : NodeProxyType.values()) System.out.println(c);
public static NodeProxyType 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 static boolean isInput(NodeProxyType value)
public static boolean isOutput(NodeProxyType value)
public boolean isInput()
public boolean isOutput()
public boolean same(java.lang.Object other)