public enum UriStatus extends Enum<UriStatus>
| Enum Constant and Description |
|---|
BAD_URI |
INVALID_DOMAIN |
INVALID_VERSION |
VALID_UNVERSIONED |
VALID_VERSIONED |
| Modifier and Type | Method and Description |
|---|---|
static UriStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UriStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UriStatus VALID_VERSIONED
public static final UriStatus VALID_UNVERSIONED
public static final UriStatus INVALID_VERSION
public static final UriStatus INVALID_DOMAIN
public static final UriStatus BAD_URI
public static UriStatus[] values()
for (UriStatus c : UriStatus.values()) System.out.println(c);
public static UriStatus 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 nullCopyright © 2007-2012. All Rights Reserved.