public enum DuplicatePostProcessorMode extends java.lang.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(java.lang.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(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