public enum DuplicatePostProcessorMode extends Enum<DuplicatePostProcessorMode>
Enum Constant and Description |
---|
IMPLEMENTATION_ONLY
Uses the
Descriptor.getImplementation() method
and Descriptor.getDescriptorType() to compare descriptors |
STRICT
Uses the equals method of
DescriptorImpl which includes most of the fields of the descriptor |
Modifier and Type | Method and Description |
---|---|
static DuplicatePostProcessorMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DuplicatePostProcessorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DuplicatePostProcessorMode STRICT
DescriptorImpl
which includes most of the fields of the descriptorpublic static final DuplicatePostProcessorMode IMPLEMENTATION_ONLY
Descriptor.getImplementation()
method
and Descriptor.getDescriptorType()
to compare descriptorspublic static DuplicatePostProcessorMode[] values()
for (DuplicatePostProcessorMode c : DuplicatePostProcessorMode.values()) System.out.println(c);
public static DuplicatePostProcessorMode 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–2019 Oracle Corporation. All rights reserved.