public enum NormalizationRating extends Enum<NormalizationRating>
Java class for normalizationRating.
The following schema fragment specifies the expected content contained within this class.
Enum Constant and Description |
---|
COUNTRY |
TOWN |
UNKNOWN |
WAY |
WAYNUMBER |
ZIPCODE |
Modifier and Type | Method and Description |
---|---|
static NormalizationRating |
fromValue(String v) |
String |
value() |
static NormalizationRating |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NormalizationRating[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NormalizationRating UNKNOWN
public static final NormalizationRating COUNTRY
public static final NormalizationRating ZIPCODE
public static final NormalizationRating TOWN
public static final NormalizationRating WAY
public static final NormalizationRating WAYNUMBER
public static NormalizationRating[] values()
for (NormalizationRating c : NormalizationRating.values()) System.out.println(c);
public static NormalizationRating 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 NormalizationRating fromValue(String v)
Copyright © 2021. All rights reserved.