public static enum FormatError.Severity extends Enum<FormatError.Severity>
Enum Constant and Description |
---|
ERROR
The error indicates the script is severely flawed.
|
WARNING
The error is unexpected, but can be worked around.
|
Modifier and Type | Method and Description |
---|---|
static FormatError.Severity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FormatError.Severity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormatError.Severity WARNING
public static final FormatError.Severity ERROR
public static FormatError.Severity[] values()
for (FormatError.Severity c : FormatError.Severity.values()) System.out.println(c);
public static FormatError.Severity 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 © 2017 Eclipse JGit Project. All rights reserved.