|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<EditOutput>
com.deltaxml.odf.merge.EditOutput
public enum EditOutput
Enumeration representing the different options for outputting edit units in the ODT Merger
| Enum Constant Summary | |
|---|---|
ALL
Output all edit units |
|
MULTIPLE_ONLY
Output edit units only for merge units that have been changed by more than one editor |
|
NONE
Output no edit units |
|
| Method Summary | |
|---|---|
static EditOutput |
getEditOutput(String value)
Returns an EditOutput object from the supplied String value if appropriate |
String |
toString()
Returns a String representation of the EditOutput |
static EditOutput |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EditOutput[] |
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 EditOutput ALL
public static final EditOutput MULTIPLE_ONLY
public static final EditOutput NONE
| Method Detail |
|---|
public static final EditOutput[] values()
for(EditOutput c : EditOutput.values())
System.out.println(c);
public static EditOutput 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()
Returns a String representation of the EditOutput
toString in class Enum<EditOutput>public static EditOutput getEditOutput(String value)
Returns an EditOutput object from the supplied String value if appropriate
This method should not normally be necessary, enum values should be accessed directly. However, if you have a String representation of EditOutput, it may be a useful utility method.
value - the String representation of EditOutput
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||