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