|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<WhitespaceOnlyChangeOutput>
com.deltaxml.odf.WhitespaceOnlyChangeOutput
public enum WhitespaceOnlyChangeOutput
Enumeration representing the possible values to set as the output for whitespace only changes
| Enum Constant Summary | |
|---|---|
OutputA
The value stating that a modified whitespace only change should output the whitespace from input A |
|
OutputB
The value stating that a modified whitespace only change should output the whitespace from input B |
|
ShowChanges
The value stating that changes should be shown |
|
| Method Summary | |
|---|---|
static WhitespaceOnlyChangeOutput |
getWhitespaceOnlyChangeOutput(String value)
|
String |
toString()
Returns a String representation of the WhitespaceOnlyChangeOutput |
static WhitespaceOnlyChangeOutput |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static WhitespaceOnlyChangeOutput[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final WhitespaceOnlyChangeOutput ShowChanges
public static final WhitespaceOnlyChangeOutput OutputA
public static final WhitespaceOnlyChangeOutput OutputB
| Method Detail |
|---|
public static final WhitespaceOnlyChangeOutput[] values()
for(WhitespaceOnlyChangeOutput c : WhitespaceOnlyChangeOutput.values())
System.out.println(c);
public static WhitespaceOnlyChangeOutput valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified namepublic String toString()
toString in class Enum<WhitespaceOnlyChangeOutput>public static WhitespaceOnlyChangeOutput getWhitespaceOnlyChangeOutput(String value)
This method should not normally be necessary, enum values should be accessed directly.
However, if you have a String representation of WhitespaceOnlyChangeOutput, it may be a useful utility method.
value - the String representation of WhitespaceOnlyChangeOutput
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||