On this page
Enum Class StructuredTaskScope.Subtask.State
java.lang.Object
java.lang.Enum<StructuredTaskScope.Subtask.StatePREVIEW>
java.util.concurrent.StructuredTaskScope.Subtask.State
- All Implemented Interfaces:
Serializable
,Comparable<StructuredTaskScope.Subtask.StatePREVIEW>
,Constable
- Enclosing interface:
-
StructuredTaskScope.SubtaskPREVIEW<T>
public static enum StructuredTaskScope.Subtask.State extends Enum<StructuredTaskScope.Subtask.StatePREVIEW>
State
is a preview API of the Java platform.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
Represents the state of a subtask.
- Since:
- 21
- See Also:
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Enum Constant Summary
Enum Constant | Description |
---|---|
FAILED |
The subtask failed with an exception.
|
SUCCESS |
The subtask completed successfully with a result.
|
UNAVAILABLE |
The subtask result or exception is not available.
|
Method Summary
Modifier and Type | Method | Description |
---|---|---|
static StructuredTaskScope.Subtask.StatePREVIEW |
valueOf |
Returns the enum constant of this class with the specified name.
|
static StructuredTaskScope.Subtask.StatePREVIEW[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared.
|
Enum Constant Details
UNAVAILABLE
public static final StructuredTaskScope.Subtask.StatePREVIEW UNAVAILABLE
SUCCESS
public static final StructuredTaskScope.Subtask.StatePREVIEW SUCCESS
The subtask completed successfully with a result. The
Subtask.get()
PREVIEW method can be used to obtain the result. This is a terminal state.
FAILED
public static final StructuredTaskScope.Subtask.StatePREVIEW FAILED
The subtask failed with an exception. The
Subtask.exception()
PREVIEW method can be used to obtain the exception. This is a terminal state.
Method Details
values
public static StructuredTaskScope.Subtask.StatePREVIEW[] 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
public static StructuredTaskScope.Subtask.StatePREVIEW valueOf(String name)
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
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/concurrent/StructuredTaskScope.Subtask.State.html
State
when preview features are enabled.