Enum AggPeriod
- java.lang.Object
-
- java.lang.Enum<AggPeriod>
-
- com.streamlayer.analytics.studio.v2.AggPeriod
-
-
Field Summary
Fields Modifier and Type Field Description static intAP_1DAY_VALUEReserved: AP_12HOURS = 11;static intAP_1HOUR_VALUEReserved for future use: AP_5MINS = 2; AP_10MINS = 3; AP_15MINS = 4; AP_30MINS = 5;static intAP_1MIN_VALUEAggregation period 1 minutestatic intAP_1MONTH_VALUEReserved: AP_7DAYS = 21;static intAP_UNSET_VALUEAP_UNSET = 0;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static AggPeriodforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<AggPeriod>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static AggPeriodvalueOf(int value)Deprecated.static AggPeriodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AggPeriod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AP_UNSET
public static final AggPeriod AP_UNSET
AP_UNSET = 0;
-
AP_1MIN
public static final AggPeriod AP_1MIN
Aggregation period 1 minute
AP_1MIN = 1;
-
AP_1HOUR
public static final AggPeriod AP_1HOUR
Reserved for future use: AP_5MINS = 2; AP_10MINS = 3; AP_15MINS = 4; AP_30MINS = 5;
AP_1HOUR = 10;
-
AP_1DAY
public static final AggPeriod AP_1DAY
Reserved: AP_12HOURS = 11;
AP_1DAY = 20;
-
AP_1MONTH
public static final AggPeriod AP_1MONTH
Reserved: AP_7DAYS = 21;
AP_1MONTH = 30;
-
UNRECOGNIZED
public static final AggPeriod UNRECOGNIZED
-
-
Field Detail
-
AP_UNSET_VALUE
public static final int AP_UNSET_VALUE
AP_UNSET = 0;- See Also:
- Constant Field Values
-
AP_1MIN_VALUE
public static final int AP_1MIN_VALUE
Aggregation period 1 minute
AP_1MIN = 1;- See Also:
- Constant Field Values
-
AP_1HOUR_VALUE
public static final int AP_1HOUR_VALUE
Reserved for future use: AP_5MINS = 2; AP_10MINS = 3; AP_15MINS = 4; AP_30MINS = 5;
AP_1HOUR = 10;- See Also:
- Constant Field Values
-
AP_1DAY_VALUE
public static final int AP_1DAY_VALUE
Reserved: AP_12HOURS = 11;
AP_1DAY = 20;- See Also:
- Constant Field Values
-
AP_1MONTH_VALUE
public static final int AP_1MONTH_VALUE
Reserved: AP_7DAYS = 21;
AP_1MONTH = 30;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static AggPeriod[] 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 (AggPeriod c : AggPeriod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AggPeriod 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 AggPeriod 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 AggPeriod forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<AggPeriod> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-