public enum Positioning extends Enum<Positioning>
Enum Constant and Description |
---|
auto |
autoLeft |
autoRight |
bottomAuto |
bottomLeft |
bottomRight |
topAuto |
topLeft |
topRight |
Modifier and Type | Field and Description |
---|---|
static Positioning |
DEFAULT |
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static Positioning |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Positioning[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Positioning auto
public static final Positioning topLeft
public static final Positioning topRight
public static final Positioning bottomLeft
public static final Positioning bottomRight
public static final Positioning autoLeft
public static final Positioning autoRight
public static final Positioning topAuto
public static final Positioning bottomAuto
public static final Positioning DEFAULT
public static Positioning[] values()
for (Positioning c : Positioning.values()) System.out.println(c);
public static Positioning 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 String getValue()
Copyright © 2015 JBoss by Red Hat. All Rights Reserved.