public static enum DisplayUpdatedEvent.DisplayUpdateLevel extends Enum<DisplayUpdatedEvent.DisplayUpdateLevel>
Enum Constant and Description |
---|
REBUILD
The extents and decorations have changed.
An example: stretching an image so it's height changes. |
UPDATE
The data has changed, but the extents and decorations have not.
An example: changing the intensity of a single pixel. |
Modifier and Type | Method and Description |
---|---|
static DisplayUpdatedEvent.DisplayUpdateLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisplayUpdatedEvent.DisplayUpdateLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayUpdatedEvent.DisplayUpdateLevel UPDATE
public static final DisplayUpdatedEvent.DisplayUpdateLevel REBUILD
public static DisplayUpdatedEvent.DisplayUpdateLevel[] values()
for (DisplayUpdatedEvent.DisplayUpdateLevel c : DisplayUpdatedEvent.DisplayUpdateLevel.values()) System.out.println(c);
public static DisplayUpdatedEvent.DisplayUpdateLevel 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 © 2015–2022 SciJava. All rights reserved.