public enum ORIENTATION extends java.lang.Enum<ORIENTATION>
TabbedPane4Tables| Enum Constant and Description |
|---|
horizontal
Orientação horizontal
|
Horizontal
Orientação horizontal
|
HORIZONTAL
Orientação horizontal
|
vertical
Orientação horizontal
|
Vertical
Orientação horizontal
|
VERTICAL
Orientação vertical
|
| Modifier and Type | Method and Description |
|---|---|
static ORIENTATION |
value(java.lang.String value)
Obtém a constante de orientação correspondente ao
value. |
static ORIENTATION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ORIENTATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ORIENTATION HORIZONTAL
public static final ORIENTATION Horizontal
public static final ORIENTATION horizontal
public static final ORIENTATION VERTICAL
public static final ORIENTATION Vertical
public static final ORIENTATION vertical
public static ORIENTATION[] values()
for (ORIENTATION c : ORIENTATION.values()) System.out.println(c);
public static ORIENTATION valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ORIENTATION value(java.lang.String value)
value. Caso
o valor passado não seja equivalente a nenhuma das constantes, por padrão,
retornamos a constante de orientação vertical.value - - valor da orientação.Copyright © 2018. All Rights Reserved.