public static enum DesktopEntry.Type extends Enum<DesktopEntry.Type>
| Enum Constant and Description |
|---|
application |
directory |
fsDevice |
link |
| Modifier and Type | Method and Description |
|---|---|
static DesktopEntry.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DesktopEntry.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DesktopEntry.Type application
public static final DesktopEntry.Type link
public static final DesktopEntry.Type fsDevice
public static final DesktopEntry.Type directory
public static DesktopEntry.Type[] values()
for (DesktopEntry.Type c : DesktopEntry.Type.values()) System.out.println(c);
public static DesktopEntry.Type 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 © 2016. All rights reserved.