public static enum RestrictionMeta.Operator extends Enum<RestrictionMeta.Operator>
| Enum Constant and Description |
|---|
EQUAL |
GREATE_EQUAL_THAN |
IN |
LESS_EQUAL_THAN |
NOT_EQUAL |
NOT_IN |
NULL |
| Modifier and Type | Method and Description |
|---|---|
static RestrictionMeta.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestrictionMeta.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestrictionMeta.Operator EQUAL
public static final RestrictionMeta.Operator NOT_EQUAL
public static final RestrictionMeta.Operator IN
public static final RestrictionMeta.Operator NOT_IN
public static final RestrictionMeta.Operator GREATE_EQUAL_THAN
public static final RestrictionMeta.Operator LESS_EQUAL_THAN
public static final RestrictionMeta.Operator NULL
public static RestrictionMeta.Operator[] values()
for (RestrictionMeta.Operator c : RestrictionMeta.Operator.values()) System.out.println(c);
public static RestrictionMeta.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 nullCopyright © 2005–2018 The OpenURP Software. All rights reserved.