public enum PreGenerationRequirement extends Enum<PreGenerationRequirement>
Enum Constant and Description |
---|
LAZY_PREGENERATION
The proxies can be generated lazily when needed,
they are not needed prior to parsing a document
|
MUST_PREGENERATE
The proxies must be pre-generated before being
asked to parse a document
|
Modifier and Type | Method and Description |
---|---|
static PreGenerationRequirement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PreGenerationRequirement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PreGenerationRequirement MUST_PREGENERATE
public static final PreGenerationRequirement LAZY_PREGENERATION
public static PreGenerationRequirement[] values()
for (PreGenerationRequirement c : PreGenerationRequirement.values()) System.out.println(c);
public static PreGenerationRequirement 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 nullCopyright © 2009–2023 Oracle Corporation. All rights reserved.