Enum EndAt
- All Implemented Interfaces:
Serializable,Comparable<EndAt>,java.lang.constant.Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFor a given block test, stop at the first assignment of (TODO: all?)For a given block test, stop after observing the first construct with a block body following/preceding the block test.For a given block test, stop at the first return statement following/preceding the block test.For a given block test, stop at the first statement following/preceding the block test.For a given block test, stop at the first throw statement following/preceding the block test.For a given block test, stop at the end of the lambda under test.For a given block test, stop at the last reference of the variable(s) in the assignment clauses following/preceding the block test. -
Method Summary
-
Enum Constant Details
-
LAMBDA
For a given block test, stop at the end of the lambda under test. TODO: Check if this is accurate. -
FIRST_ASSIGN
For a given block test, stop at the first assignment of (TODO: all?) the variable(s) in the assignment clauses following/preceding the block test. -
FIRST_BLOCK
For a given block test, stop after observing the first construct with a block body following/preceding the block test. -
FIRST_RETURN
For a given block test, stop at the first return statement following/preceding the block test. TODO: Does preceding make sense in this case? -
FIRST_THROW
For a given block test, stop at the first throw statement following/preceding the block test. TODO: Does preceding make sense in this case? -
LAST_REFERENCE
For a given block test, stop at the last reference of the variable(s) in the assignment clauses following/preceding the block test. -
FIRST_STATEMENT
For a given block test, stop at the first statement following/preceding the block test. TODO: Does this encompass the functionalities of inline tests?
-
-
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 nameNullPointerException- if the argument is null
-