public enum UserDefinedTagsMethod extends Enum<UserDefinedTagsMethod>
| Enum Constant and Description |
|---|
Add
Adds the specified user-defined tags to a document (in addition to any existing)
|
Delete
Deletes the specified user-defined tags from a document
|
Overwrite
Overwrites any existing user-defined tags with the specified tags
|
| Modifier and Type | Method and Description |
|---|---|
static UserDefinedTagsMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserDefinedTagsMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserDefinedTagsMethod Delete
public static final UserDefinedTagsMethod Add
public static final UserDefinedTagsMethod Overwrite
public static UserDefinedTagsMethod[] values()
for (UserDefinedTagsMethod c : UserDefinedTagsMethod.values()) System.out.println(c);
public static UserDefinedTagsMethod 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 © 2024. All rights reserved.