public enum IncomeRangeIncomeRangeType extends Enum<IncomeRangeIncomeRangeType>
Java class for IncomeRange.IncomeRangeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="IncomeRange.IncomeRangeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="INCOME_RANGE_UNDETERMINED"/>
<enumeration value="INCOME_RANGE_0_50"/>
<enumeration value="INCOME_RANGE_50_60"/>
<enumeration value="INCOME_RANGE_60_70"/>
<enumeration value="INCOME_RANGE_70_80"/>
<enumeration value="INCOME_RANGE_80_90"/>
<enumeration value="INCOME_RANGE_90_UP"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INCOME_RANGE_0_50
Users in [0%, 50%) income percentile range.
|
INCOME_RANGE_50_60
Users in [50%, 60%) income percentile range.
|
INCOME_RANGE_60_70
Users in [60%, 70%) income percentile range.
|
INCOME_RANGE_70_80
Users in [70%, 80%) income percentile range.
|
INCOME_RANGE_80_90
Users in [80%, 90%) income percentile range.
|
INCOME_RANGE_90_UP
Users in [90%, 100%] income percentile range.
|
INCOME_RANGE_UNDETERMINED
Users for which income range is undetermined.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static IncomeRangeIncomeRangeType |
fromValue(String v) |
String |
value() |
static IncomeRangeIncomeRangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncomeRangeIncomeRangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncomeRangeIncomeRangeType INCOME_RANGE_UNDETERMINED
public static final IncomeRangeIncomeRangeType INCOME_RANGE_0_50
public static final IncomeRangeIncomeRangeType INCOME_RANGE_50_60
public static final IncomeRangeIncomeRangeType INCOME_RANGE_60_70
public static final IncomeRangeIncomeRangeType INCOME_RANGE_70_80
public static final IncomeRangeIncomeRangeType INCOME_RANGE_80_90
public static final IncomeRangeIncomeRangeType INCOME_RANGE_90_UP
public static final IncomeRangeIncomeRangeType UNKNOWN
public static IncomeRangeIncomeRangeType[] values()
for (IncomeRangeIncomeRangeType c : IncomeRangeIncomeRangeType.values()) System.out.println(c);
public static IncomeRangeIncomeRangeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static IncomeRangeIncomeRangeType fromValue(String v)
Copyright © 2023. All rights reserved.