public static enum PlatformUtil.Desktop extends Enum<PlatformUtil.Desktop>
| Modifier and Type | Method and Description |
|---|---|
static PlatformUtil.Desktop |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlatformUtil.Desktop[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformUtil.Desktop WIN
public static final PlatformUtil.Desktop KDE
public static final PlatformUtil.Desktop GNOME
public static final PlatformUtil.Desktop MAC_OS
public static final PlatformUtil.Desktop OTHER
public static PlatformUtil.Desktop[] values()
for (PlatformUtil.Desktop c : PlatformUtil.Desktop.values()) System.out.println(c);
public static PlatformUtil.Desktop 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 © 2022. All rights reserved.