Package ai.djl.inference.streaming
Enum Class StreamingTranslator.Support
- All Implemented Interfaces:
Serializable
,Comparable<StreamingTranslator.Support>
,Constable
- Enclosing interface:
- StreamingTranslator<I,
O>
What types of
StreamingTranslator.StreamOutput
s are supported by a StreamingTranslator
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSupportsasync()
but notiterative()
.Supports bothiterative()
andasync()
.Supportsiterative()
but notasync()
. -
Method Summary
Modifier and TypeMethodDescriptionboolean
async()
Returns whether theStreamingTranslator
supports iterative output.boolean
Returns whether theStreamingTranslator
supports iterative output.static StreamingTranslator.Support
Returns the enum constant of this class with the specified name.static StreamingTranslator.Support[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ITERATIVE
Supportsiterative()
but notasync()
. -
ASYNC
Supportsasync()
but notiterative()
. -
BOTH
Supports bothiterative()
andasync()
.
-
-
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
-
iterative
public boolean iterative()Returns whether theStreamingTranslator
supports iterative output.- Returns:
- whether the
StreamingTranslator
supports iterative output - See Also:
-
async
public boolean async()Returns whether theStreamingTranslator
supports iterative output.- Returns:
- whether the
StreamingTranslator
supports iterative output - See Also:
-