public static enum IEditor.CHANGE_CASE_TO extends java.lang.Enum<IEditor.CHANGE_CASE_TO>
Enum Constant and Description |
---|
CYCLE
cycle between cases
|
LOWER
lower case
|
SENTENCE
title case for whole string
|
TITLE
title case for each token in string
|
UPPER
upper case
|
Modifier and Type | Method and Description |
---|---|
static IEditor.CHANGE_CASE_TO |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IEditor.CHANGE_CASE_TO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IEditor.CHANGE_CASE_TO LOWER
public static final IEditor.CHANGE_CASE_TO SENTENCE
public static final IEditor.CHANGE_CASE_TO TITLE
public static final IEditor.CHANGE_CASE_TO UPPER
public static final IEditor.CHANGE_CASE_TO CYCLE
public static IEditor.CHANGE_CASE_TO[] values()
for (IEditor.CHANGE_CASE_TO c : IEditor.CHANGE_CASE_TO.values()) System.out.println(c);
public static IEditor.CHANGE_CASE_TO 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