Enum PluginParamConstants.LARKSUITE
- java.lang.Object
-
- java.lang.Enum<PluginParamConstants.LARKSUITE>
-
- io.dataease.plugins.common.constants.PluginParamConstants.LARKSUITE
-
- All Implemented Interfaces:
PluginParamConstants,Serializable,Comparable<PluginParamConstants.LARKSUITE>
- Enclosing interface:
- PluginParamConstants
public static enum PluginParamConstants.LARKSUITE extends Enum<PluginParamConstants.LARKSUITE> 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
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APP_SECRETAPPK_IDOPENREDIRECT_URI
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static PluginParamConstants.LARKSUITEvalueOf(String name)Returns the enum constant of this type with the specified name.static PluginParamConstants.LARKSUITE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPK_ID
public static final PluginParamConstants.LARKSUITE APPK_ID
-
APP_SECRET
public static final PluginParamConstants.LARKSUITE APP_SECRET
-
REDIRECT_URI
public static final PluginParamConstants.LARKSUITE REDIRECT_URI
-
OPEN
public static final PluginParamConstants.LARKSUITE OPEN
-
-
Method Detail
-
values
public static PluginParamConstants.LARKSUITE[] 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.LARKSUITE c : PluginParamConstants.LARKSUITE.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.LARKSUITE 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
-
-