public static enum CellFocusEvent.GridSection extends Enum<CellFocusEvent.GridSection>
| Enum Constant and Description |
|---|
BODY
Body section.
|
FOOTER
Footer section.
|
HEADER
Header section.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getClientSideName()
Returns the client side name of the section.
|
static CellFocusEvent.GridSection |
ofClientSideName(String clientSideName)
Returns the matching
CellFocusEvent.GridSection for the given client side
name. |
static CellFocusEvent.GridSection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellFocusEvent.GridSection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellFocusEvent.GridSection HEADER
public static final CellFocusEvent.GridSection BODY
public static final CellFocusEvent.GridSection FOOTER
public static CellFocusEvent.GridSection[] values()
for (CellFocusEvent.GridSection c : CellFocusEvent.GridSection.values()) System.out.println(c);
public static CellFocusEvent.GridSection 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 static CellFocusEvent.GridSection ofClientSideName(String clientSideName)
CellFocusEvent.GridSection for the given client side
name. An unknown client side name will lead to an exception.clientSideName - client side name to lookupIllegalArgumentException - on an unknown client side section namepublic String getClientSideName()
Copyright © 2025. All rights reserved.