public static enum BitVectorMath.Operands extends java.lang.Enum<BitVectorMath.Operands>
Modifier and Type | Method and Description |
---|---|
int |
count() |
static BitVectorMath.Operands |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BitVectorMath.Operands[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitVectorMath.Operands UNARY
public static final BitVectorMath.Operands BINARY
public static final BitVectorMath.Operands TERNARY
public static BitVectorMath.Operands[] values()
for (BitVectorMath.Operands c : BitVectorMath.Operands.values()) System.out.println(c);
public static BitVectorMath.Operands 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 int count()