public static enum EditorConfigurationBuilder.TagStatus extends java.lang.Enum<EditorConfigurationBuilder.TagStatus>
Status of the tag used in the Templater Editor.
Inactive tags are hidden by default, while deprecated tags are discouraged from its use.
Enum Constant and Description |
---|
ACTIVE
The default active status for ordinary tags.
|
DEPRECATED
When some tag will be removed in the future,
or its use should be discouraged.
|
INACTIVE
When tag can be used, but it's not expected that its used,
it can be marked as inactive and it will be hidden by default.
|
Modifier and Type | Method and Description |
---|---|
static EditorConfigurationBuilder.TagStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EditorConfigurationBuilder.TagStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EditorConfigurationBuilder.TagStatus ACTIVE
public static final EditorConfigurationBuilder.TagStatus INACTIVE
public static final EditorConfigurationBuilder.TagStatus DEPRECATED
When some tag will be removed in the future, or its use should be discouraged.
During analysis Templater will translate methods with @Deprecated annotation into appropriate (this) status
public static EditorConfigurationBuilder.TagStatus[] values()
for (EditorConfigurationBuilder.TagStatus c : EditorConfigurationBuilder.TagStatus.values()) System.out.println(c);
public static EditorConfigurationBuilder.TagStatus 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