public static enum CounterBxUnit.CounterBxUnitMode extends java.lang.Enum<CounterBxUnit.CounterBxUnitMode>
| Enum Constant and Description |
|---|
A
正计时累加。
|
B
反计时累加。
|
C
正计时不累加。
|
D
反计时不累加。
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static CounterBxUnit.CounterBxUnitMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CounterBxUnit.CounterBxUnitMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CounterBxUnit.CounterBxUnitMode A
public static final CounterBxUnit.CounterBxUnitMode B
public static final CounterBxUnit.CounterBxUnitMode C
public static final CounterBxUnit.CounterBxUnitMode D
public java.lang.String toString()
toString in class java.lang.Enum<CounterBxUnit.CounterBxUnitMode>public static CounterBxUnit.CounterBxUnitMode 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 CounterBxUnit.CounterBxUnitMode[] values()
for (CounterBxUnit.CounterBxUnitMode c : CounterBxUnit.CounterBxUnitMode.values()) System.out.println(c);