Enum Constant Summary
Enum Constants
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
Returns the enum constant of this type with the specified name.
Returns an array containing the constants of this enum type, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
PRESERVES_ORDER
public static final Statement PRESERVES_ORDER
PRESERVES_STREAM_TYPE
public static final Statement PRESERVES_STREAM_TYPE
PRESERVES_DISTINCT
public static final Statement PRESERVES_DISTINCT
PRESERVES_SORTED
public static final Statement PRESERVES_SORTED
PRESERVES_FINITE
public static final Statement PRESERVES_FINITE
PRESERVES_SIDE_EFFECT
public static final Statement PRESERVES_SIDE_EFFECT
MODIFIES_STREAM_TYPE
public static final Statement MODIFIES_STREAM_TYPE
MODIFIES_DISTINCT
public static final Statement MODIFIES_DISTINCT
MODIFIES_SORTED
public static final Statement MODIFIES_SORTED
MODIFIES_FINITE
public static final Statement MODIFIES_FINITE
MODIFIES_SIDE_EFFECT
public static final Statement MODIFIES_SIDE_EFFECT
CLEARS_STREAM_TYPE
public static final Statement CLEARS_STREAM_TYPE
CLEARS_DISTINCT
public static final Statement CLEARS_DISTINCT
CLEARS_SIDE_EFFECT
public static final Statement CLEARS_SIDE_EFFECT
Method Details
values
Returns an array containing the constants of this enum type, in
the order they are declared.
Returns:
an array containing the constants of this enum type, in the order they are declared
valueOf
Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null