public static enum Brush.BrushEvent extends Enum<Brush.BrushEvent>
Enum Constant and Description |
---|
BRUSH
on mousemove, if the brush extent has changed.
|
BRUSH_END
on mouseup.
|
BRUSH_START
on mousedown.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static Brush.BrushEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Brush.BrushEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Brush.BrushEvent BRUSH_START
public static final Brush.BrushEvent BRUSH
public static final Brush.BrushEvent BRUSH_END
public static Brush.BrushEvent[] values()
for (Brush.BrushEvent c : Brush.BrushEvent.values()) System.out.println(c);
public static Brush.BrushEvent 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 getValue()
Copyright © 2015 gwt-d3. All rights reserved.