public enum RefreshMode extends Enum<RefreshMode>
Api.draw(String).| Enum Constant and Description |
|---|
HOLD
The ordering and search will be recalculated and the rows redrawn in their new positions.
|
PAGE
Ordering and search will not be updated and the paging position held where is was.
|
RESET
The ordering and search will be recalculated and the rows redrawn in their new positions.
|
| Modifier and Type | Method and Description |
|---|---|
String |
mode() |
static RefreshMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RefreshMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefreshMode RESET
public static final RefreshMode HOLD
public static final RefreshMode PAGE
public static RefreshMode[] values()
for (RefreshMode c : RefreshMode.values()) System.out.println(c);
public static RefreshMode 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 mode()
Copyright © 2018 JBoss, a division of Red Hat. All rights reserved.