public enum BindingType extends Enum<BindingType>
Enum Constant and Description |
---|
ATOMPUB |
BROWSER |
CUSTOM |
LOCAL |
WEBSERVICES |
Modifier and Type | Method and Description |
---|---|
static BindingType |
fromValue(String v) |
String |
value() |
static BindingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingType WEBSERVICES
public static final BindingType ATOMPUB
public static final BindingType BROWSER
public static final BindingType LOCAL
public static final BindingType CUSTOM
public static BindingType[] values()
for (BindingType c : BindingType.values()) System.out.println(c);
public static BindingType 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 BindingType fromValue(String v)
Copyright © 2009-2013 The Apache Software Foundation. All Rights Reserved.