public enum FileIcon extends Enum<FileIcon>
An icon to be used in displaying the annotation.
Enum Constant and Description |
---|
Graph
Graph icon.
|
Paperclip
Paperclip icon.
|
PushPin
PushPin icon (default value).
|
Tag
This is tag icon.
|
Modifier and Type | Method and Description |
---|---|
static FileIcon |
getByValue(int value) |
int |
getValue() |
static FileIcon |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileIcon[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileIcon PushPin
PushPin icon (default value).
public static final FileIcon Graph
Graph icon.
public static final FileIcon Paperclip
Paperclip icon.
public static final FileIcon Tag
This is tag icon.
public static FileIcon[] values()
for (FileIcon c : FileIcon.values()) System.out.println(c);
public static FileIcon 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 int getValue()
public static FileIcon getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.