Enum KSQLWindow.WindowType
- java.lang.Object
-
- java.lang.Enum<KSQLWindow.WindowType>
-
- net.sf.jsqlparser.statement.select.KSQLWindow.WindowType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<KSQLWindow.WindowType>
- Enclosing class:
- KSQLWindow
public static enum KSQLWindow.WindowType extends java.lang.Enum<KSQLWindow.WindowType>
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
windowType
-
Constructor Summary
Constructors Modifier Constructor Description private
WindowType(java.lang.String windowType)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static KSQLWindow.WindowType
from(java.lang.String type)
java.lang.String
getWindowType()
static KSQLWindow.WindowType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static KSQLWindow.WindowType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HOPPING
public static final KSQLWindow.WindowType HOPPING
-
SESSION
public static final KSQLWindow.WindowType SESSION
-
TUMBLING
public static final KSQLWindow.WindowType TUMBLING
-
-
Method Detail
-
values
public static KSQLWindow.WindowType[] 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 (KSQLWindow.WindowType c : KSQLWindow.WindowType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KSQLWindow.WindowType 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
-
getWindowType
public java.lang.String getWindowType()
-
from
public static KSQLWindow.WindowType from(java.lang.String type)
-
-