public enum ParseType extends Enum<ParseType>
| Enum Constant and Description |
|---|
MSEXCEL |
MSPOWERPOINTCOMMENTS |
MSWORD |
MSWORDDOCPROPERTIES |
| Modifier and Type | Method and Description |
|---|---|
static ParseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParseType MSWORD
public static final ParseType MSEXCEL
public static final ParseType MSWORDDOCPROPERTIES
public static final ParseType MSPOWERPOINTCOMMENTS
public static ParseType[] values()
for (ParseType c : ParseType.values()) System.out.println(c);
public static ParseType 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 © 2021. All rights reserved.