public static enum PaintTarget.PaintStatus extends Enum<PaintTarget.PaintStatus>
PaintTarget.startPaintable(Component, String)
).Enum Constant and Description |
---|
CACHED
A previously unpainted or painted
Component has been queued
be created/update later in a separate change in the same set of
changes. |
PAINTING
Painting started, addVariable() and addAttribute() etc.
|
Modifier and Type | Method and Description |
---|---|
static PaintTarget.PaintStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaintTarget.PaintStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaintTarget.PaintStatus PAINTING
public static final PaintTarget.PaintStatus CACHED
Component
has been queued
be created/update later in a separate change in the same set of
changes.public static PaintTarget.PaintStatus[] values()
for (PaintTarget.PaintStatus c : PaintTarget.PaintStatus.values()) System.out.println(c);
public static PaintTarget.PaintStatus 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 nullCopyright © 2019 Vaadin Ltd. All rights reserved.