Enum AccessStrategy.AccessStrategyType
- java.lang.Object
-
- java.lang.Enum<AccessStrategy.AccessStrategyType>
-
- org.apache.iotdb.udf.api.customizer.strategy.AccessStrategy.AccessStrategyType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AccessStrategy.AccessStrategyType>
- Enclosing interface:
- AccessStrategy
public static enum AccessStrategy.AccessStrategyType extends java.lang.Enum<AccessStrategy.AccessStrategyType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MAPPABLE_ROW_BY_ROWROW_BY_ROWSESSION_TIME_WINDOWSLIDING_SIZE_WINDOWSLIDING_TIME_WINDOWSTATE_WINDOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccessStrategy.AccessStrategyTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AccessStrategy.AccessStrategyType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAPPABLE_ROW_BY_ROW
public static final AccessStrategy.AccessStrategyType MAPPABLE_ROW_BY_ROW
- See Also:
MappableRowByRowAccessStrategy
-
ROW_BY_ROW
public static final AccessStrategy.AccessStrategyType ROW_BY_ROW
- See Also:
RowByRowAccessStrategy
-
SLIDING_TIME_WINDOW
public static final AccessStrategy.AccessStrategyType SLIDING_TIME_WINDOW
- See Also:
SlidingTimeWindowAccessStrategy
-
SLIDING_SIZE_WINDOW
public static final AccessStrategy.AccessStrategyType SLIDING_SIZE_WINDOW
- See Also:
SlidingSizeWindowAccessStrategy
-
SESSION_TIME_WINDOW
public static final AccessStrategy.AccessStrategyType SESSION_TIME_WINDOW
- See Also:
SessionTimeWindowAccessStrategy
-
STATE_WINDOW
public static final AccessStrategy.AccessStrategyType STATE_WINDOW
- See Also:
StateWindowAccessStrategy
-
-
Method Detail
-
values
public static AccessStrategy.AccessStrategyType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AccessStrategy.AccessStrategyType c : AccessStrategy.AccessStrategyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessStrategy.AccessStrategyType valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-