- All Implemented Interfaces:
Serializable,Comparable<Expression.ExpressionKind>,Constable
- Enclosing interface:
Expression
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA call to an abstract (mathematical) expression; instance ofAbstractFunctionCallExpression.A C address-of expressioninvalid input: '&expr', instance ofAddressOfExpression.an array lambda expression, instance ofArrayLambdaExpressionConditional expression c ? a : b, instance ofConditionalExpressioninstance ofFunctionCallExpressionA $state_null constant, instance ofStatenullExpression -
Method Summary
Modifier and TypeMethodDescriptionstatic Expression.ExpressionKindReturns the enum constant of this class with the specified name.static Expression.ExpressionKind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ABSTRACT_FUNCTION_CALL
A call to an abstract (mathematical) expression; instance ofAbstractFunctionCallExpression. -
ADDRESS_OF
A C address-of expressioninvalid input: '&expr', instance ofAddressOfExpression. -
BINARY
-
BOOLEAN_LITERAL
-
BOUND_VARIABLE
-
CAST
-
CHAR_LITERAL
-
COND
Conditional expression c ? a : b, instance ofConditionalExpression -
DEREFERENCE
-
DERIVATIVE
-
DIFFERENTIABLE
-
DOMAIN_GUARD
-
DOT
-
DYNAMIC_TYPE_OF
-
FUNCTION_IDENTIFIER
-
FUNCTION_GUARD
-
INITIAL_VALUE
-
INTEGER_LITERAL
-
MEMORY_UNIT
-
NULL_LITERAL
-
QUANTIFIER
-
REAL_LITERAL
-
REGULAR_RANGE
-
RESULT
-
SCOPEOF
-
SELF
-
SIZEOF_TYPE
-
SIZEOF_EXPRESSION
-
STRING_LITERAL
-
COMPOUND_LITERAL
-
SUBSCRIPT
-
SYSTEM_GUARD
-
UNARY
-
UNDEFINED_PROC
-
VARIABLE
-
HERE_OR_ROOT
-
PROC_NULL
-
STATE_NULL
A $state_null constant, instance ofStatenullExpression -
FUNC_CALL
instance ofFunctionCallExpression -
REC_DOMAIN_LITERAL
-
WILDCARD
-
NOTHING
-
ARRAY_LAMBDA
an array lambda expression, instance ofArrayLambdaExpression -
LAMBDA
-
EXTENDED_QUANTIFIER
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-