public enum VerticalAlignment extends Enum<VerticalAlignment> implements SimpleDatatype<String>
HorizontalAlignment
Enum Constant and Description |
---|
BOTTOM
Align content to the bottom.
|
CENTER
Align content centered to the middle (same space at top and bottom).
|
TOP
Align content to the top.
|
Modifier and Type | Field and Description |
---|---|
private String |
title |
private String |
value |
Modifier and Type | Method and Description |
---|---|
static VerticalAlignment |
fromValue(String value)
This method gets the
VerticalAlignment with the given value . |
Alignment |
getAlignment()
This method gets the corresponding
Alignment . |
String |
getValue()
This method returns the raw value of this datatype.
|
String |
toString()
|
static VerticalAlignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerticalAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerticalAlignment TOP
public static final VerticalAlignment BOTTOM
public static final VerticalAlignment CENTER
public static VerticalAlignment[] values()
for (VerticalAlignment c : VerticalAlignment.values()) System.out.println(c);
public static VerticalAlignment 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()
SimpleDatatype
String
, Character
, Boolean
, any type of Number
, any type of java.time.LocalDate
, etc.).getValue
in interface AttributeReadValue<String>
getValue
in interface SimpleDatatype<String>
public Alignment getAlignment()
Alignment
.Alignment
.public String toString()
Datatype
String
representation of this Datatype
. While the general contract of
Object.toString()
is very weak and mainly used for debugging, the contract here is very strong. The
returned String
has to be suitable for end-users and official output to any kind of sink. NlsMessage
for
this purpose and implement NlsObject
if you want to support I18N/L10N.public static VerticalAlignment fromValue(String value)
VerticalAlignment
with the given value
.value
- is the value
of the requested VerticalAlignment
.VerticalAlignment
.Copyright © 2001–2016 mmm-Team. All rights reserved.