public static enum IEditorConfigurationBuilder.TagStatus extends java.lang.Enum<IEditorConfigurationBuilder.TagStatus>
Inactive tags are hidden by default,
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 IEditorConfigurationBuilder.TagStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IEditorConfigurationBuilder.TagStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IEditorConfigurationBuilder.TagStatus ACTIVE
public static final IEditorConfigurationBuilder.TagStatus INACTIVE
public static final IEditorConfigurationBuilder.TagStatus DEPRECATED
During analysis Templater will translate methods with @Deprecated annotation into appropriate (this) status
public static IEditorConfigurationBuilder.TagStatus[] values()
for (IEditorConfigurationBuilder.TagStatus c : IEditorConfigurationBuilder.TagStatus.values()) System.out.println(c);
public static IEditorConfigurationBuilder.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