Enum OOXMLWordAndPowerPointTextHandler.EditType
- java.lang.Object
-
- java.lang.Enum<OOXMLWordAndPowerPointTextHandler.EditType>
-
- org.apache.tika.parser.microsoft.ooxml.OOXMLWordAndPowerPointTextHandler.EditType
-
- All Implemented Interfaces:
Serializable
,Comparable<OOXMLWordAndPowerPointTextHandler.EditType>
- Enclosing class:
- OOXMLWordAndPowerPointTextHandler
public static enum OOXMLWordAndPowerPointTextHandler.EditType extends Enum<OOXMLWordAndPowerPointTextHandler.EditType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OOXMLWordAndPowerPointTextHandler.EditType
valueOf(String name)
Returns the enum constant of this type with the specified name.static OOXMLWordAndPowerPointTextHandler.EditType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OOXMLWordAndPowerPointTextHandler.EditType NONE
-
INSERT
public static final OOXMLWordAndPowerPointTextHandler.EditType INSERT
-
DELETE
public static final OOXMLWordAndPowerPointTextHandler.EditType DELETE
-
MOVE_TO
public static final OOXMLWordAndPowerPointTextHandler.EditType MOVE_TO
-
MOVE_FROM
public static final OOXMLWordAndPowerPointTextHandler.EditType MOVE_FROM
-
-
Method Detail
-
values
public static OOXMLWordAndPowerPointTextHandler.EditType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OOXMLWordAndPowerPointTextHandler.EditType c : OOXMLWordAndPowerPointTextHandler.EditType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OOXMLWordAndPowerPointTextHandler.EditType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-