public enum TaskbarItemType extends Enum<TaskbarItemType>
| Enum Constant and Description |
|---|
CMS
CMS taskbar item, eg. documents or calendar.
|
STAPLED
Stapled taskbar item, eg. statistics or search center.
|
TRANSVERSAL
Transversal taskbar item, eg. home or search.
|
| Modifier and Type | Method and Description |
|---|---|
static TaskbarItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskbarItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskbarItemType TRANSVERSAL
public static final TaskbarItemType STAPLED
public static final TaskbarItemType CMS
public static TaskbarItemType[] values()
for (TaskbarItemType c : TaskbarItemType.values()) System.out.println(c);
public static TaskbarItemType 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 © 2021. All rights reserved.