public enum LabelOverLengthMode extends java.lang.Enum<LabelOverLengthMode>
The enumeration of processing modes of overlong labels.
The overlong labels are labels that are longer than the label length limit, which can be set by ThemeLabel.maxLabelLength.
SuperMap provides three ways to deal with the overlong labels: NewLine, Omit, and None.
| Enum Constant and Description |
|---|
NEWLINE
${services_components_commontypes_LabelOverLengthMode_attribute_NEWLINE_Title}
|
NONE
${services_components_commontypes_LabelOverLengthMode_attribute_NONE_Title}
|
OMIT
${services_components_commontypes_LabelOverLengthMode_attribute_OMIT_Title}
|
| Modifier and Type | Method and Description |
|---|---|
static LabelOverLengthMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LabelOverLengthMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final LabelOverLengthMode NONE
${services_components_commontypes_LabelOverLengthMode_attribute_NONE_Title}
${services_components_commontypes_LabelOverLengthMode_attribute_NONE_Description}
public static final LabelOverLengthMode OMIT
${services_components_commontypes_LabelOverLengthMode_attribute_OMIT_Title}
${services_components_commontypes_LabelOverLengthMode_attribute_OMIT_Description}
public static final LabelOverLengthMode NEWLINE
${services_components_commontypes_LabelOverLengthMode_attribute_NEWLINE_Title}
${services_components_commontypes_LabelOverLengthMode_attribute_NEWLINE_Description}
public static LabelOverLengthMode[] values()
for (LabelOverLengthMode c : LabelOverLengthMode.values())
System.out.println(c);
public static LabelOverLengthMode 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 null