Enum DiagnosticStatusLow
- java.lang.Object
-
- java.lang.Enum<DiagnosticStatusLow>
-
- io.openems.edge.goodwe.common.enums.DiagnosticStatusLow
-
- All Implemented Interfaces:
OptionsEnum
,java.io.Serializable
,java.lang.Comparable<DiagnosticStatusLow>
public enum DiagnosticStatusLow extends java.lang.Enum<DiagnosticStatusLow> implements OptionsEnum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Gets this enums String representation.OptionsEnum
getUndefined()
Gets the enum that is used for 'UNDEFINED' values.int
getValue()
Gets this enums int representation.static DiagnosticStatusLow
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DiagnosticStatusLow[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface io.openems.common.types.OptionsEnum
asCamelCase, isUndefined
-
-
-
-
Enum Constant Detail
-
UNDEFINED
public static final DiagnosticStatusLow UNDEFINED
-
BATTERY_VOLT_LOW
public static final DiagnosticStatusLow BATTERY_VOLT_LOW
-
BATTERY_SOC_LOW
public static final DiagnosticStatusLow BATTERY_SOC_LOW
-
BATTERY_SOC_IN_BACK
public static final DiagnosticStatusLow BATTERY_SOC_IN_BACK
-
BMS_DISCHARGE_DISABLE
public static final DiagnosticStatusLow BMS_DISCHARGE_DISABLE
-
DISCHARGE_TIME_ON
public static final DiagnosticStatusLow DISCHARGE_TIME_ON
-
CHARGE_TIME_ON
public static final DiagnosticStatusLow CHARGE_TIME_ON
-
DISCHARGE_DRIVE_ON
public static final DiagnosticStatusLow DISCHARGE_DRIVE_ON
-
BMS_DISCHARGE_CURRENT_LOW
public static final DiagnosticStatusLow BMS_DISCHARGE_CURRENT_LOW
-
DISCHARGE_CURRENT_LOW
public static final DiagnosticStatusLow DISCHARGE_CURRENT_LOW
-
METER_COMM_LOSS
public static final DiagnosticStatusLow METER_COMM_LOSS
-
METER_CONNECT_REVERSE
public static final DiagnosticStatusLow METER_CONNECT_REVERSE
-
SELF_USE_LOAD_LIGHT
public static final DiagnosticStatusLow SELF_USE_LOAD_LIGHT
-
EMS_DISCHARGE_CURRENT_ZERO
public static final DiagnosticStatusLow EMS_DISCHARGE_CURRENT_ZERO
-
DISCHARGE_BUS_HIGH
public static final DiagnosticStatusLow DISCHARGE_BUS_HIGH
-
BATTERY_DISCONNECT
public static final DiagnosticStatusLow BATTERY_DISCONNECT
-
BATTERY_OVERCHARGE
public static final DiagnosticStatusLow BATTERY_OVERCHARGE
-
BMS_OVER_TEMPERATURE
public static final DiagnosticStatusLow BMS_OVER_TEMPERATURE
-
BMS_OVER_CHARGE
public static final DiagnosticStatusLow BMS_OVER_CHARGE
-
BMS_CHARGE_DISABLE
public static final DiagnosticStatusLow BMS_CHARGE_DISABLE
-
SELF_USE_OFF
public static final DiagnosticStatusLow SELF_USE_OFF
-
SOC_DELTA_OVER_RANGE
public static final DiagnosticStatusLow SOC_DELTA_OVER_RANGE
-
BATTERY_SELF_DISCHARGE
public static final DiagnosticStatusLow BATTERY_SELF_DISCHARGE
-
OFF_GRID_SOC_LOW
public static final DiagnosticStatusLow OFF_GRID_SOC_LOW
-
GRID_WAVE_UNSTABLE
public static final DiagnosticStatusLow GRID_WAVE_UNSTABLE
-
FEED_POWER_LIMIT
public static final DiagnosticStatusLow FEED_POWER_LIMIT
-
PF_VALUE_SET
public static final DiagnosticStatusLow PF_VALUE_SET
-
REAL_POWER_LIMIT
public static final DiagnosticStatusLow REAL_POWER_LIMIT
-
SOC_PROTECT_OFF
public static final DiagnosticStatusLow SOC_PROTECT_OFF
-
-
Method Detail
-
values
public static DiagnosticStatusLow[] 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 (DiagnosticStatusLow c : DiagnosticStatusLow.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiagnosticStatusLow 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
-
getValue
public int getValue()
Description copied from interface:OptionsEnum
Gets this enums int representation.- Specified by:
getValue
in interfaceOptionsEnum
- Returns:
- the int representation
-
getName
public java.lang.String getName()
Description copied from interface:OptionsEnum
Gets this enums String representation.- Specified by:
getName
in interfaceOptionsEnum
- Returns:
- the String representation
-
getUndefined
public OptionsEnum getUndefined()
Description copied from interface:OptionsEnum
Gets the enum that is used for 'UNDEFINED' values.- Specified by:
getUndefined
in interfaceOptionsEnum
- Returns:
- the UNDEFINED enum
-
-