private static enum SvnPatch.ParserState extends java.lang.Enum<SvnPatch.ParserState>
Enum Constant and Description |
---|
COPY_FROM_SEEN |
GIT_DIFF_SEEN |
GIT_HEADER_FOUND |
GIT_MINUS_SEEN |
GIT_PLUS_SEEN |
GIT_TREE_SEEN |
MINUS_SEEN |
MOVE_FROM_SEEN |
START |
UNIDIFF_FOUND |
Modifier and Type | Method and Description |
---|---|
static SvnPatch.ParserState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SvnPatch.ParserState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SvnPatch.ParserState START
public static final SvnPatch.ParserState GIT_DIFF_SEEN
public static final SvnPatch.ParserState GIT_TREE_SEEN
public static final SvnPatch.ParserState GIT_MINUS_SEEN
public static final SvnPatch.ParserState GIT_PLUS_SEEN
public static final SvnPatch.ParserState MOVE_FROM_SEEN
public static final SvnPatch.ParserState COPY_FROM_SEEN
public static final SvnPatch.ParserState MINUS_SEEN
public static final SvnPatch.ParserState UNIDIFF_FOUND
public static final SvnPatch.ParserState GIT_HEADER_FOUND
public static SvnPatch.ParserState[] values()
for (SvnPatch.ParserState c : SvnPatch.ParserState.values()) System.out.println(c);
public static SvnPatch.ParserState 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