public enum Token extends Enum<Token>
| Enum Constant and Description |
|---|
AND
and
|
BOTTOM
bottom
|
CNAME
name of a concept
|
DATAEXPR
any data expression: data value, [constrained] datatype
|
DNAME
name of a data role
|
EXISTS
exists
|
FORALL
for all
|
GE
ATLEAST = GE
|
INAME
name of a singleton
|
INV
inv
|
LE
ATMOST = LE
|
NOT
not
|
OR
or
|
PROJFROM
role projection from
|
PROJINTO
role projection into
|
RCOMPOSITION
role composition
|
RNAME
name of a role
|
SELF
self
|
TOP
top
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
String |
toString() |
static Token |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Token[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Token AND
public static final Token OR
public static final Token NOT
public static final Token INV
public static final Token RCOMPOSITION
public static final Token PROJINTO
public static final Token PROJFROM
public static final Token SELF
public static final Token TOP
public static final Token BOTTOM
public static final Token EXISTS
public static final Token FORALL
public static final Token GE
public static final Token LE
public static final Token DATAEXPR
public static final Token CNAME
public static final Token INAME
public static final Token RNAME
public static final Token DNAME
public static Token[] values()
for (Token c : Token.values()) System.out.println(c);
public static Token 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 getName()
Copyright © 2018 The University of Manchester. All rights reserved.