public enum TextMaskMode extends java.lang.Enum<TextMaskMode>
| Enum Constant and Description |
|---|
FULL_MASK
All placeholders will be shown, even if the input is incomplete
|
PARTITIAL_MASK
Only the placeholders from the start index to the last input index will be shown
|
| Modifier and Type | Method and Description |
|---|---|
static TextMaskMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TextMaskMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextMaskMode FULL_MASK
public static final TextMaskMode PARTITIAL_MASK
public static TextMaskMode[] values()
for (TextMaskMode c : TextMaskMode.values()) System.out.println(c);
public static TextMaskMode 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 nullSiehe auch Jowidgets Nutzerhandbuch