public enum NRPattern extends Enum<NRPattern>
| Enum Constant and Description |
|---|
BBCD |
BBE |
BBZ |
BC |
BCD |
BE |
BEC |
BEE |
BG |
BZ |
DG |
EE |
EG |
FB |
FC |
FE |
FG |
XD |
Y |
| Modifier and Type | Method and Description |
|---|---|
static NRPattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NRPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NRPattern BBCD
public static final NRPattern BBE
public static final NRPattern BBZ
public static final NRPattern BCD
public static final NRPattern BEE
public static final NRPattern BE
public static final NRPattern BC
public static final NRPattern BEC
public static final NRPattern BG
public static final NRPattern DG
public static final NRPattern EG
public static final NRPattern BZ
public static final NRPattern EE
public static final NRPattern FE
public static final NRPattern FC
public static final NRPattern FB
public static final NRPattern FG
public static final NRPattern Y
public static final NRPattern XD
public static NRPattern[] values()
for (NRPattern c : NRPattern.values()) System.out.println(c);
public static NRPattern valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014–2021 码农场. All rights reserved.