Package io.moov.sdk.models.components
Enum MonthlyVolumeRange
- java.lang.Object
-
- java.lang.Enum<MonthlyVolumeRange>
-
- io.moov.sdk.models.components.MonthlyVolumeRange
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MonthlyVolumeRange>
public enum MonthlyVolumeRange extends java.lang.Enum<MonthlyVolumeRange>
MonthlyVolumeRangeThe low value in each range is included. The high value in each range is excluded.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIFTY_K100_KFIVE_HUNDRED_K1_MONE_HUNDRED_K250_KONE_M5_MOVER5MTEN_K50_KTWO_HUNDRED_AND_FIFTY_K500_KUNDER10K
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<MonthlyVolumeRange>fromValue(java.lang.String value)java.lang.Stringvalue()static MonthlyVolumeRangevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MonthlyVolumeRange[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDER10K
public static final MonthlyVolumeRange UNDER10K
-
TEN_K50_K
public static final MonthlyVolumeRange TEN_K50_K
-
FIFTY_K100_K
public static final MonthlyVolumeRange FIFTY_K100_K
-
ONE_HUNDRED_K250_K
public static final MonthlyVolumeRange ONE_HUNDRED_K250_K
-
TWO_HUNDRED_AND_FIFTY_K500_K
public static final MonthlyVolumeRange TWO_HUNDRED_AND_FIFTY_K500_K
-
FIVE_HUNDRED_K1_M
public static final MonthlyVolumeRange FIVE_HUNDRED_K1_M
-
ONE_M5_M
public static final MonthlyVolumeRange ONE_M5_M
-
OVER5M
public static final MonthlyVolumeRange OVER5M
-
-
Method Detail
-
values
public static MonthlyVolumeRange[] 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 (MonthlyVolumeRange c : MonthlyVolumeRange.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MonthlyVolumeRange 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
-
value
public java.lang.String value()
-
fromValue
public static java.util.Optional<MonthlyVolumeRange> fromValue(java.lang.String value)
-
-