public static enum DictionaryEncodeOptions.NullEncodingBehavior extends Enum<DictionaryEncodeOptions.NullEncodingBehavior>
| Enum Constant and Description |
|---|
ENCODE
the null value will be added to the dictionary with a proper index
|
MASK
the null value will be masked in the indices array
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
DictionaryEncodeOptions.NullEncodingBehavior |
intern() |
String |
toString() |
static DictionaryEncodeOptions.NullEncodingBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DictionaryEncodeOptions.NullEncodingBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DictionaryEncodeOptions.NullEncodingBehavior ENCODE
public static final DictionaryEncodeOptions.NullEncodingBehavior MASK
public static DictionaryEncodeOptions.NullEncodingBehavior[] values()
for (DictionaryEncodeOptions.NullEncodingBehavior c : DictionaryEncodeOptions.NullEncodingBehavior.values()) System.out.println(c);
public static DictionaryEncodeOptions.NullEncodingBehavior 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 DictionaryEncodeOptions.NullEncodingBehavior intern()
public String toString()
toString in class Enum<DictionaryEncodeOptions.NullEncodingBehavior>Copyright © 2021. All rights reserved.