public enum SharedSetType extends Enum<SharedSetType>
Java class for SharedSetType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SharedSetType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NEGATIVE_KEYWORDS"/>
<enumeration value="NEGATIVE_PLACEMENTS"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
NEGATIVE_KEYWORDS |
NEGATIVE_PLACEMENTS |
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static SharedSetType |
fromValue(String v) |
String |
value() |
static SharedSetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SharedSetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharedSetType NEGATIVE_KEYWORDS
public static final SharedSetType NEGATIVE_PLACEMENTS
public static final SharedSetType UNKNOWN
public static SharedSetType[] values()
for (SharedSetType c : SharedSetType.values()) System.out.println(c);
public static SharedSetType 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 nullpublic String value()
public static SharedSetType fromValue(String v)
Copyright © 2023. All rights reserved.