Enum PluginParamConstants.LDAP
- java.lang.Object
-
- java.lang.Enum<PluginParamConstants.LDAP>
-
- io.dataease.plugins.common.constants.PluginParamConstants.LDAP
-
- All Implemented Interfaces:
PluginParamConstants,Serializable,Comparable<PluginParamConstants.LDAP>
- Enclosing interface:
- PluginParamConstants
public static enum PluginParamConstants.LDAP extends Enum<PluginParamConstants.LDAP> implements PluginParamConstants
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.dataease.plugins.common.constants.PluginParamConstants
PluginParamConstants.BASE, PluginParamConstants.Classify, PluginParamConstants.DINGTALK, PluginParamConstants.I18n, PluginParamConstants.LARK, PluginParamConstants.LARKSUITE, PluginParamConstants.LDAP, PluginParamConstants.MAIL, PluginParamConstants.Registry, PluginParamConstants.Type, PluginParamConstants.WECOM
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static PluginParamConstants.LDAPvalueOf(String name)Returns the enum constant of this type with the specified name.static PluginParamConstants.LDAP[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
URL
public static final PluginParamConstants.LDAP URL
-
DN
public static final PluginParamConstants.LDAP DN
-
PASSWORD
public static final PluginParamConstants.LDAP PASSWORD
-
OU
public static final PluginParamConstants.LDAP OU
-
FILTER
public static final PluginParamConstants.LDAP FILTER
-
MAPPING
public static final PluginParamConstants.LDAP MAPPING
-
OPEN
public static final PluginParamConstants.LDAP OPEN
-
-
Method Detail
-
values
public static PluginParamConstants.LDAP[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PluginParamConstants.LDAP c : PluginParamConstants.LDAP.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PluginParamConstants.LDAP valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
- Specified by:
getValuein interfacePluginParamConstants
-
-