public static enum Operator.IconKind extends java.lang.Enum<Operator.IconKind>
Enum Constant and Description |
---|
CANVAS_OVERLAY_ICON
A maximum 24x24 overlay image to be displayed on the bottom-right
quadrant of the default StreamBase icon, otherwise an expected 48x48
image is used as the sole icon when displayed on an EventFlow Canvas
in Studio.
|
PALETTE_ICON_LARGE
A maximum 32x32 image that is used to display this Operator or
Adapter in a Studio chooser.
|
PALETTE_ICON_SMALL
A maximum 16x16 image that is used to display this Operator or
Adapter in a Studio chooser.
|
Modifier and Type | Method and Description |
---|---|
static Operator.IconKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Operator.IconKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator.IconKind CANVAS_OVERLAY_ICON
The image should be a PNG, GIF, BMP or JPEG, in that order of preference, within the size restrictions described.
A transparency channel should be used when possible.
public static final Operator.IconKind PALETTE_ICON_LARGE
The image should be a 32x32 PNG, GIF, BMP or JPEG, in that order of preference.
A transparency channel should be used when possible.
public static final Operator.IconKind PALETTE_ICON_SMALL
The image should be a 16x16 PNG, GIF, BMP or JPEG, in that order of preference.
A transparency channel should be used when possible.
public static Operator.IconKind[] values()
for (Operator.IconKind c : Operator.IconKind.values()) System.out.println(c);
public static Operator.IconKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null