Enum Constant and Description |
---|
Q0
Corresponding 0
|
Q1
Corresponding 1
|
Q10
Corresponding 10
|
Q11
Corresponding 11
|
Q12
Corresponding 12
|
Q13
Corresponding 13
|
Q14
Corresponding 14
|
Q15
Corresponding 15
|
Q2
Corresponding 2
|
Q3
Corresponding 3
|
Q4
Corresponding 4
|
Q5
Corresponding 5
|
Q6
Corresponding 6
|
Q7
Corresponding 7
|
Q8
Corresponding 8
|
Q9
Corresponding 9
|
Modifier and Type | Method and Description |
---|---|
byte |
getByte() |
static StUhf.Q |
ValueOf(int q)
To obtain an integer Q values corresponding to enumerate objects
|
static StUhf.Q |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StUhf.Q[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StUhf.Q Q0
public static final StUhf.Q Q1
public static final StUhf.Q Q2
public static final StUhf.Q Q3
public static final StUhf.Q Q4
public static final StUhf.Q Q5
public static final StUhf.Q Q6
public static final StUhf.Q Q7
public static final StUhf.Q Q8
public static final StUhf.Q Q9
public static final StUhf.Q Q10
public static final StUhf.Q Q11
public static final StUhf.Q Q12
public static final StUhf.Q Q13
public static final StUhf.Q Q14
public static final StUhf.Q Q15
public static StUhf.Q[] values()
for (StUhf.Q c : StUhf.Q.values()) System.out.println(c);
public static StUhf.Q 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 StUhf.Q ValueOf(int q)
q
-
Integer value Q,the range is [0,15] java.lang.IllegalArgumentException
-
If Q is not in the legal areapublic byte getByte()