public static enum CompoundIcon.Layout extends Enum<CompoundIcon.Layout>
| Enum Constant and Description |
|---|
HORIZONTAL |
STACKED |
VERTICAL |
| Modifier and Type | Method and Description |
|---|---|
static CompoundIcon.Layout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompoundIcon.Layout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompoundIcon.Layout HORIZONTAL
public static final CompoundIcon.Layout VERTICAL
public static final CompoundIcon.Layout STACKED
public static CompoundIcon.Layout[] values()
for (CompoundIcon.Layout c : CompoundIcon.Layout.values()) System.out.println(c);
public static CompoundIcon.Layout 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 © 2008–2018 Ultreia.io. All rights reserved.