public enum ModificationStatus extends java.lang.Enum<ModificationStatus>
SourceFragment
has been modified, and should be reprinted as is or with the normal pretty-printerEnum Constant and Description |
---|
MODIFIED |
NOT_MODIFIED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ModificationStatus |
fromBoolean(java.lang.Boolean b) |
boolean |
toBoolean() |
static ModificationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModificationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModificationStatus UNKNOWN
public static final ModificationStatus MODIFIED
public static final ModificationStatus NOT_MODIFIED
public static ModificationStatus[] values()
for (ModificationStatus c : ModificationStatus.values()) System.out.println(c);
public static ModificationStatus 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 nullpublic static ModificationStatus fromBoolean(java.lang.Boolean b)
public boolean toBoolean()
Copyright © 2007–2021 Inria. All rights reserved.