Package org.apache.flink.fnexecution.v1
Enum FlinkFnApi.UserDefinedDataStreamFunction.FunctionType
- java.lang.Object
-
- java.lang.Enum<FlinkFnApi.UserDefinedDataStreamFunction.FunctionType>
-
- org.apache.flink.fnexecution.v1.FlinkFnApi.UserDefinedDataStreamFunction.FunctionType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<FlinkFnApi.UserDefinedDataStreamFunction.FunctionType>
- Enclosing class:
- FlinkFnApi.UserDefinedDataStreamFunction
public static enum FlinkFnApi.UserDefinedDataStreamFunction.FunctionType extends Enum<FlinkFnApi.UserDefinedDataStreamFunction.FunctionType> implements com.google.protobuf.ProtocolMessageEnum
Protobuf enumorg.apache.flink.fn_execution.v1.UserDefinedDataStreamFunction.FunctionType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CO_BROADCAST_PROCESS
CO_BROADCAST_PROCESS = 5;
CO_PROCESS
CO_PROCESS = 1;
KEYED_CO_BROADCAST_PROCESS
KEYED_CO_BROADCAST_PROCESS = 6;
KEYED_CO_PROCESS
KEYED_CO_PROCESS = 3;
KEYED_PROCESS
KEYED_PROCESS = 2;
PROCESS
PROCESS = 0;
REVISE_OUTPUT
REVISE_OUTPUT = 100;
UNRECOGNIZED
WINDOW
WINDOW = 4;
-
Field Summary
Fields Modifier and Type Field Description static int
CO_BROADCAST_PROCESS_VALUE
CO_BROADCAST_PROCESS = 5;
static int
CO_PROCESS_VALUE
CO_PROCESS = 1;
static int
KEYED_CO_BROADCAST_PROCESS_VALUE
KEYED_CO_BROADCAST_PROCESS = 6;
static int
KEYED_CO_PROCESS_VALUE
KEYED_CO_PROCESS = 3;
static int
KEYED_PROCESS_VALUE
KEYED_PROCESS = 2;
static int
PROCESS_VALUE
PROCESS = 0;
static int
REVISE_OUTPUT_VALUE
REVISE_OUTPUT = 100;
static int
WINDOW_VALUE
WINDOW = 4;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<FlinkFnApi.UserDefinedDataStreamFunction.FunctionType>
internalGetValueMap()
static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType
valueOf(int value)
Deprecated.static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESS
public static final FlinkFnApi.UserDefinedDataStreamFunction.FunctionType PROCESS
PROCESS = 0;
-
CO_PROCESS
public static final FlinkFnApi.UserDefinedDataStreamFunction.FunctionType CO_PROCESS
CO_PROCESS = 1;
-
KEYED_PROCESS
public static final FlinkFnApi.UserDefinedDataStreamFunction.FunctionType KEYED_PROCESS
KEYED_PROCESS = 2;
-
KEYED_CO_PROCESS
public static final FlinkFnApi.UserDefinedDataStreamFunction.FunctionType KEYED_CO_PROCESS
KEYED_CO_PROCESS = 3;
-
WINDOW
public static final FlinkFnApi.UserDefinedDataStreamFunction.FunctionType WINDOW
WINDOW = 4;
-
CO_BROADCAST_PROCESS
public static final FlinkFnApi.UserDefinedDataStreamFunction.FunctionType CO_BROADCAST_PROCESS
CO_BROADCAST_PROCESS = 5;
-
KEYED_CO_BROADCAST_PROCESS
public static final FlinkFnApi.UserDefinedDataStreamFunction.FunctionType KEYED_CO_BROADCAST_PROCESS
KEYED_CO_BROADCAST_PROCESS = 6;
-
REVISE_OUTPUT
public static final FlinkFnApi.UserDefinedDataStreamFunction.FunctionType REVISE_OUTPUT
REVISE_OUTPUT = 100;
-
UNRECOGNIZED
public static final FlinkFnApi.UserDefinedDataStreamFunction.FunctionType UNRECOGNIZED
-
-
Field Detail
-
PROCESS_VALUE
public static final int PROCESS_VALUE
PROCESS = 0;
- See Also:
- Constant Field Values
-
CO_PROCESS_VALUE
public static final int CO_PROCESS_VALUE
CO_PROCESS = 1;
- See Also:
- Constant Field Values
-
KEYED_PROCESS_VALUE
public static final int KEYED_PROCESS_VALUE
KEYED_PROCESS = 2;
- See Also:
- Constant Field Values
-
KEYED_CO_PROCESS_VALUE
public static final int KEYED_CO_PROCESS_VALUE
KEYED_CO_PROCESS = 3;
- See Also:
- Constant Field Values
-
WINDOW_VALUE
public static final int WINDOW_VALUE
WINDOW = 4;
- See Also:
- Constant Field Values
-
CO_BROADCAST_PROCESS_VALUE
public static final int CO_BROADCAST_PROCESS_VALUE
CO_BROADCAST_PROCESS = 5;
- See Also:
- Constant Field Values
-
KEYED_CO_BROADCAST_PROCESS_VALUE
public static final int KEYED_CO_BROADCAST_PROCESS_VALUE
KEYED_CO_BROADCAST_PROCESS = 6;
- See Also:
- Constant Field Values
-
REVISE_OUTPUT_VALUE
public static final int REVISE_OUTPUT_VALUE
REVISE_OUTPUT = 100;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType[] 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 (FlinkFnApi.UserDefinedDataStreamFunction.FunctionType c : FlinkFnApi.UserDefinedDataStreamFunction.FunctionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType valueOf(int value)
Deprecated.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:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
forNumber
public static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<FlinkFnApi.UserDefinedDataStreamFunction.FunctionType> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static FlinkFnApi.UserDefinedDataStreamFunction.FunctionType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-