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