public enum EXTEND_ENUM extends Enum<EXTEND_ENUM>
| Enum Constant and Description |
|---|
LSL |
SXTB |
SXTH |
SXTW |
SXTX |
UXTB |
UXTH |
UXTW |
UXTX |
| Modifier and Type | Method and Description |
|---|---|
int |
intValue() |
static EXTEND_ENUM |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EXTEND_ENUM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EXTEND_ENUM UXTB
public static final EXTEND_ENUM UXTH
public static final EXTEND_ENUM UXTW
public static final EXTEND_ENUM LSL
public static final EXTEND_ENUM UXTX
public static final EXTEND_ENUM SXTB
public static final EXTEND_ENUM SXTH
public static final EXTEND_ENUM SXTW
public static final EXTEND_ENUM SXTX
public static EXTEND_ENUM[] values()
for (EXTEND_ENUM c : EXTEND_ENUM.values()) System.out.println(c);
public static EXTEND_ENUM 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 nullpublic final int intValue()
Copyright © 2018. All rights reserved.