public enum EncodeHintType extends java.lang.Enum<EncodeHintType>
| Enum Constant and Description |
|---|
CHARACTER_SET
Specifies what character encoding to use where applicable (type String)
|
ERROR_CORRECTION
Specifies what degree of error correction to use, for example in QR Codes (type Integer).
|
| Modifier and Type | Method and Description |
|---|---|
static EncodeHintType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EncodeHintType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncodeHintType ERROR_CORRECTION
public static final EncodeHintType CHARACTER_SET
public static EncodeHintType[] values()
for (EncodeHintType c : EncodeHintType.values()) System.out.println(c);
public static EncodeHintType 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 null"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"