public enum AccessPointType extends Enum<AccessPointType>
Java class for accessPointType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="accessPointType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="SINGLE_ADDRESS"/>
<enumeration value="NUMBER_RANGE"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
NUMBER_RANGE |
SINGLE_ADDRESS |
| Modifier and Type | Method and Description |
|---|---|
static AccessPointType |
fromValue(String v) |
String |
value() |
static AccessPointType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessPointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessPointType SINGLE_ADDRESS
public static final AccessPointType NUMBER_RANGE
public static AccessPointType[] values()
for (AccessPointType c : AccessPointType.values()) System.out.println(c);
public static AccessPointType 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 AccessPointType fromValue(String v)
Copyright © 2009,2013 Oracle and/or its affiliates. All rights reserved.