public enum SegmentJustify extends Enum<SegmentJustify>
Note: the enums are not capitalized, because of problems with PropertyEditor
.
Enum Constant and Description |
---|
around |
between |
center |
end |
none |
start |
Modifier and Type | Field and Description |
---|---|
static String |
AROUND
Internal constant to use in annotations.
|
static String |
BETWEEN
Internal constant to use in annotations.
|
static String |
CENTER
Internal constant to use in annotations.
|
static String |
END
Internal constant to use in annotations.
|
static String |
NONE
Internal constant to use in annotations.
|
static String |
START
Internal constant to use in annotations.
|
Modifier and Type | Method and Description |
---|---|
static SegmentJustify |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SegmentJustify[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SegmentJustify none
public static final SegmentJustify start
public static final SegmentJustify center
public static final SegmentJustify end
public static final SegmentJustify around
public static final SegmentJustify between
public static final String NONE
none
public static final String START
start
public static final String CENTER
center
public static final String END
end
public static final String AROUND
around
public static final String BETWEEN
between
public static SegmentJustify[] values()
for (SegmentJustify c : SegmentJustify.values()) System.out.println(c);
public static SegmentJustify 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 © 2002–2021 The Apache Software Foundation. All rights reserved.