public enum DictionaryBuildErrors extends Enum<DictionaryBuildErrors>
DictionaryBuilder
Enum Constant and Description |
---|
NULL_DICT
Attempt to merge with a null
Dictionary |
NULL_KEY
Attempt to insert a null key
|
NULL_VALUE
Attempt to insert a null value
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static DictionaryBuildErrors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DictionaryBuildErrors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DictionaryBuildErrors NULL_KEY
public static final DictionaryBuildErrors NULL_VALUE
public static final DictionaryBuildErrors NULL_DICT
Dictionary
public static DictionaryBuildErrors[] values()
for (DictionaryBuildErrors c : DictionaryBuildErrors.values()) System.out.println(c);
public static DictionaryBuildErrors 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 String toString()
toString
in class Enum<DictionaryBuildErrors>
Copyright © 2013. All Rights Reserved.