public static enum ZUtils.ZExprKind extends Enum<ZUtils.ZExprKind>
| Enum Constant and Description |
|---|
MIXED
Depends on the inner expression
|
PURE
Pure Z Expr
|
SCHEMA
Schema calculus expression
|
UNKNOWN
Couldn't figure out statically
|
| Modifier and Type | Method and Description |
|---|---|
static ZUtils.ZExprKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZUtils.ZExprKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZUtils.ZExprKind PURE
public static final ZUtils.ZExprKind SCHEMA
public static final ZUtils.ZExprKind MIXED
public static final ZUtils.ZExprKind UNKNOWN
public static ZUtils.ZExprKind[] values()
for (ZUtils.ZExprKind c : ZUtils.ZExprKind.values()) System.out.println(c);
public static ZUtils.ZExprKind 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 © 2003–2016 Community Z Tools Project. All rights reserved.