Enum Class ResultStreamer.BackingType
java.lang.Object
java.lang.Enum<ResultStreamer.BackingType>
org.aksw.jenax.arq.util.tuple.resultset.ResultStreamer.BackingType
- All Implemented Interfaces:
Serializable,Comparable<ResultStreamer.BackingType>,Constable
- Enclosing interface:
- ResultStreamer<D,
C, T>
Enum to describe whether an instance is backed by domain tuples, components or generic tuples.
Can be used to avoid needless transformations
Domain implies tuple and tuple implies component. This is transitive, i.e. domain implies component.
Items with lower ordinal() imply capabilities for all items with higher one
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ResultStreamer.BackingTypeReturns the enum constant of this class with the specified name.static ResultStreamer.BackingType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DOMAIN
-
TUPLE
-
COMPONENT
-
-
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
-