public enum ConnectorCategory extends Enum<ConnectorCategory>
| Modifier and Type | Method and Description |
|---|---|
static ConnectorCategory |
fromString(String value) |
String |
getCategoryName() |
Boolean |
requiresLicense() |
static ConnectorCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectorCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectorCategory COMMUNITY
public static final ConnectorCategory SELECT
public static ConnectorCategory[] values()
for (ConnectorCategory c : ConnectorCategory.values()) System.out.println(c);
public static ConnectorCategory 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 Boolean requiresLicense()
public String getCategoryName()
public static ConnectorCategory fromString(String value)
Copyright © 2022. All rights reserved.