public static enum SourceTextEntry.DUPLICATE extends java.lang.Enum<SourceTextEntry.DUPLICATE>
Enum Constant and Description |
---|
FIRST
There is entries with the same source, and this is first entry.
|
NEXT
There is entries with the same source, and this is not first entry.
|
NONE
There is no entries with the same source.
|
Modifier and Type | Method and Description |
---|---|
static SourceTextEntry.DUPLICATE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SourceTextEntry.DUPLICATE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceTextEntry.DUPLICATE NONE
public static final SourceTextEntry.DUPLICATE FIRST
public static final SourceTextEntry.DUPLICATE NEXT
public static SourceTextEntry.DUPLICATE[] values()
for (SourceTextEntry.DUPLICATE c : SourceTextEntry.DUPLICATE.values()) System.out.println(c);
public static SourceTextEntry.DUPLICATE 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