public enum TikaParseOutputFormat extends Enum<TikaParseOutputFormat>
| Modifier and Type | Method and Description |
|---|---|
static TikaParseOutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TikaParseOutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TikaParseOutputFormat xml
public static final TikaParseOutputFormat html
public static final TikaParseOutputFormat text
public static final TikaParseOutputFormat textMain
public static TikaParseOutputFormat[] values()
for (TikaParseOutputFormat c : TikaParseOutputFormat.values()) System.out.println(c);
public static TikaParseOutputFormat 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 nullApache Camel