public enum SelectionBoundary extends java.lang.Enum<SelectionBoundary> implements ValueEnum
facets or  facetValues.| Enum Constant and Description | 
|---|
| AFTERselection boundary applies to the bottom / right of the cells | 
| BEFOREselection boundary applies to the top / left of the cells | 
| BOTHselection boundary applies to both edges. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static SelectionBoundary | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static SelectionBoundary[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SelectionBoundary AFTER
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "after".
public static final SelectionBoundary BEFORE
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "before".
public static final SelectionBoundary BOTH
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "both".
public static SelectionBoundary[] values()
for (SelectionBoundary c : SelectionBoundary.values()) System.out.println(c);
public static SelectionBoundary valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null