Enum WpType
- java.lang.Object
-
- java.lang.Enum<WpType>
-
- com.streamlayer.analytics.studio.v2.WpType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNRECOGNIZEDWP_TYPE_FWPWP_TYPE_FWP = 2;WP_TYPE_UNSETWP_TYPE_UNSET = 0;WP_TYPE_WPWP_TYPE_WP = 1;WP_TYPE_WP_AND_FWPWP_TYPE_WP_AND_FWP = 3;
-
Field Summary
Fields Modifier and Type Field Description static intWP_TYPE_FWP_VALUEWP_TYPE_FWP = 2;static intWP_TYPE_UNSET_VALUEWP_TYPE_UNSET = 0;static intWP_TYPE_WP_AND_FWP_VALUEWP_TYPE_WP_AND_FWP = 3;static intWP_TYPE_WP_VALUEWP_TYPE_WP = 1;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static WpTypeforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<WpType>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static WpTypevalueOf(int value)Deprecated.static WpTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WpType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WP_TYPE_UNSET
public static final WpType WP_TYPE_UNSET
WP_TYPE_UNSET = 0;
-
WP_TYPE_WP
public static final WpType WP_TYPE_WP
WP_TYPE_WP = 1;
-
WP_TYPE_FWP
public static final WpType WP_TYPE_FWP
WP_TYPE_FWP = 2;
-
WP_TYPE_WP_AND_FWP
public static final WpType WP_TYPE_WP_AND_FWP
WP_TYPE_WP_AND_FWP = 3;
-
UNRECOGNIZED
public static final WpType UNRECOGNIZED
-
-
Field Detail
-
WP_TYPE_UNSET_VALUE
public static final int WP_TYPE_UNSET_VALUE
WP_TYPE_UNSET = 0;- See Also:
- Constant Field Values
-
WP_TYPE_WP_VALUE
public static final int WP_TYPE_WP_VALUE
WP_TYPE_WP = 1;- See Also:
- Constant Field Values
-
WP_TYPE_FWP_VALUE
public static final int WP_TYPE_FWP_VALUE
WP_TYPE_FWP = 2;- See Also:
- Constant Field Values
-
WP_TYPE_WP_AND_FWP_VALUE
public static final int WP_TYPE_WP_AND_FWP_VALUE
WP_TYPE_WP_AND_FWP = 3;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static WpType[] 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 (WpType c : WpType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WpType 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite
-
valueOf
@Deprecated public static WpType 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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
forNumber
public static WpType forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<WpType> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-