public enum Tab extends Enum<Tab>
| Enum Constant and Description |
|---|
ATTRIBUTES_STORAGE
Attributes storages.
|
TAGS
Tags.
|
| Modifier and Type | Method and Description |
|---|---|
static Tab |
fromId(String id)
Get tab from identifier.
|
String |
getId()
Getter for id.
|
String |
getKey()
Getter for key.
|
static Tab |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tab[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tab TAGS
public static final Tab ATTRIBUTES_STORAGE
public static final Tab DEFAULT
public static Tab[] values()
for (Tab c : Tab.values()) System.out.println(c);
public static Tab valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static Tab fromId(String id)
id - tab identifierpublic String getId()
public String getKey()
Copyright © 2022. All rights reserved.