public enum IncomeTier extends Enum<IncomeTier>
Java class for IncomeTier.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="IncomeTier">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="TIER_1"/>
<enumeration value="TIER_2"/>
<enumeration value="TIER_3"/>
<enumeration value="TIER_4"/>
<enumeration value="TIER_5"/>
<enumeration value="TIER_6_TO_10"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
TIER_1 |
TIER_2 |
TIER_3 |
TIER_4 |
TIER_5 |
TIER_6_TO_10
Bucket consisting of the bottom 5 tiers, specifying the bottom 50% of household
income zip codes.
|
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static IncomeTier |
fromValue(String v) |
String |
value() |
static IncomeTier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IncomeTier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncomeTier UNKNOWN
public static final IncomeTier TIER_1
public static final IncomeTier TIER_2
public static final IncomeTier TIER_3
public static final IncomeTier TIER_4
public static final IncomeTier TIER_5
public static final IncomeTier TIER_6_TO_10
public static IncomeTier[] values()
for (IncomeTier c : IncomeTier.values()) System.out.println(c);
public static IncomeTier 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 IncomeTier fromValue(String v)
Copyright © 2023. All rights reserved.