public static enum InlineDiffChunk.Type extends Enum<InlineDiffChunk.Type>
Enum Constant and Description |
---|
ADDED
A chunk that has been added.
|
DELETED
A chunk that has been removed.
|
UNMODIFIED
A chunk that stays unmodified.
|
Modifier and Type | Method and Description |
---|---|
static InlineDiffChunk.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InlineDiffChunk.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InlineDiffChunk.Type ADDED
public static final InlineDiffChunk.Type DELETED
public static final InlineDiffChunk.Type UNMODIFIED
public static InlineDiffChunk.Type[] values()
for (InlineDiffChunk.Type c : InlineDiffChunk.Type.values()) System.out.println(c);
public static InlineDiffChunk.Type 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 © 2004–2016 XWiki. All rights reserved.