public static enum RuleUtils.STRING_OPERATOR extends Enum<RuleUtils.STRING_OPERATOR>
| Enum Constant and Description | 
|---|
CONTAINS  | 
ENDS_WITH  | 
EQUAL  | 
MATCH  | 
NOT_EQUAL  | 
STARTS_WITH  | 
| Modifier and Type | Method and Description | 
|---|---|
static RuleUtils.STRING_OPERATOR | 
fromString(String text)  | 
static RuleUtils.STRING_OPERATOR | 
get(int id)  | 
String | 
getText()  | 
static RuleUtils.STRING_OPERATOR | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static RuleUtils.STRING_OPERATOR[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final RuleUtils.STRING_OPERATOR CONTAINS
public static final RuleUtils.STRING_OPERATOR STARTS_WITH
public static final RuleUtils.STRING_OPERATOR ENDS_WITH
public static final RuleUtils.STRING_OPERATOR EQUAL
public static final RuleUtils.STRING_OPERATOR NOT_EQUAL
public static final RuleUtils.STRING_OPERATOR MATCH
public static RuleUtils.STRING_OPERATOR[] values()
for (RuleUtils.STRING_OPERATOR c : RuleUtils.STRING_OPERATOR.values()) System.out.println(c);
public static RuleUtils.STRING_OPERATOR 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 static RuleUtils.STRING_OPERATOR get(int id)
public String getText()
public static RuleUtils.STRING_OPERATOR fromString(String text)
Copyright © 2015–2019. All rights reserved.