Package io.openems.edge.core.appmanager
Enum AppManager.ChannelId
- java.lang.Object
-
- java.lang.Enum<AppManager.ChannelId>
-
- io.openems.edge.core.appmanager.AppManager.ChannelId
-
- All Implemented Interfaces:
ChannelId
,java.io.Serializable
,java.lang.Comparable<AppManager.ChannelId>
- Enclosing interface:
- AppManager
public static enum AppManager.ChannelId extends java.lang.Enum<AppManager.ChannelId> implements ChannelId
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFECTIVE_APP
WRONG_APP_CONFIGURATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Doc
doc()
Gets the Channel Doc for this ChannelId.static AppManager.ChannelId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AppManager.ChannelId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WRONG_APP_CONFIGURATION
public static final AppManager.ChannelId WRONG_APP_CONFIGURATION
-
DEFECTIVE_APP
public static final AppManager.ChannelId DEFECTIVE_APP
-
-
Method Detail
-
values
public static AppManager.ChannelId[] 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 (AppManager.ChannelId c : AppManager.ChannelId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AppManager.ChannelId valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-