|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ImageEditOutput>
com.deltaxml.odf.merge.ImageEditOutput
public enum ImageEditOutput
Enumeration representing the different options for outputting image and object edit units in the ODT Merger
| Enum Constant Summary | |
|---|---|
ALL
Output all image and object edit units |
|
NONE
Output no image and object edit units |
|
| Method Summary | |
|---|---|
static ImageEditOutput |
getImageEditOutput(String value)
Returns an ImageEditOutput object from the supplied String value if appropriate |
String |
toString()
Returns a String representation of the ImageEditOutput. |
static ImageEditOutput |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ImageEditOutput[] |
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 ImageEditOutput ALL
public static final ImageEditOutput NONE
| Method Detail |
|---|
public static final ImageEditOutput[] values()
for(ImageEditOutput c : ImageEditOutput.values())
System.out.println(c);
public static ImageEditOutput 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 ImageEditOutput.
toString in class Enum<ImageEditOutput>public static ImageEditOutput getImageEditOutput(String value)
Returns an ImageEditOutput 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 ImageEditOutput, it may be a useful utility method.
value - the String representation of ImageEditOutput
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||