public static enum AMD64CalcStringAttributesOp.Op extends Enum<AMD64CalcStringAttributesOp.Op>
| Enum Constant and Description |
|---|
BMP
Calculate the code range of a 16-bit (UTF-16 or compacted UTF-32) string that is already
known to be in the BMP code range, so no UTF-16 surrogates are present.
|
LATIN1
Calculate the code range of a LATIN-1/ISO-8859-1 string.
|
UTF_16
Calculate the code range and codepoint length of a UTF-16 string.
|
UTF_32
Calculate the code range of a UTF-32 string.
|
UTF_8
Calculate the code range and codepoint length of a UTF-8 string.
|
| Modifier and Type | Method and Description |
|---|---|
static AMD64CalcStringAttributesOp.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AMD64CalcStringAttributesOp.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AMD64CalcStringAttributesOp.Op LATIN1
public static final AMD64CalcStringAttributesOp.Op BMP
public static final AMD64CalcStringAttributesOp.Op UTF_8
public static final AMD64CalcStringAttributesOp.Op UTF_16
public static final AMD64CalcStringAttributesOp.Op UTF_32
public static AMD64CalcStringAttributesOp.Op[] values()
public static AMD64CalcStringAttributesOp.Op 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 null