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_PROCESSCO_BROADCAST_PROCESS = 5;CO_PROCESSCO_PROCESS = 1;KEYED_CO_BROADCAST_PROCESSKEYED_CO_BROADCAST_PROCESS = 6;KEYED_CO_PROCESSKEYED_CO_PROCESS = 3;KEYED_PROCESSKEYED_PROCESS = 2;PROCESSPROCESS = 0;REVISE_OUTPUTREVISE_OUTPUT = 100;UNRECOGNIZEDWINDOWWINDOW = 4;
-
Field Summary
Fields Modifier and Type Field Description static intCO_BROADCAST_PROCESS_VALUECO_BROADCAST_PROCESS = 5;static intCO_PROCESS_VALUECO_PROCESS = 1;static intKEYED_CO_BROADCAST_PROCESS_VALUEKEYED_CO_BROADCAST_PROCESS = 6;static intKEYED_CO_PROCESS_VALUEKEYED_CO_PROCESS = 3;static intKEYED_PROCESS_VALUEKEYED_PROCESS = 2;static intPROCESS_VALUEPROCESS = 0;static intREVISE_OUTPUT_VALUEREVISE_OUTPUT = 100;static intWINDOW_VALUEWINDOW = 4;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static FlinkFnApi.UserDefinedDataStreamFunction.FunctionTypeforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<FlinkFnApi.UserDefinedDataStreamFunction.FunctionType>internalGetValueMap()static FlinkFnApi.UserDefinedDataStreamFunction.FunctionTypevalueOf(int value)Deprecated.static FlinkFnApi.UserDefinedDataStreamFunction.FunctionTypevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static FlinkFnApi.UserDefinedDataStreamFunction.FunctionTypevalueOf(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:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin 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:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein 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
-
-