Enum Class TeslaApiDefines.CHARGE_STATE

java.lang.Object
java.lang.Enum<TeslaApiDefines.CHARGE_STATE>
de.chiflux.tesla.TeslaApiDefines.CHARGE_STATE
All Implemented Interfaces:
Serializable, Comparable<TeslaApiDefines.CHARGE_STATE>, Constable
Enclosing interface:
TeslaApiDefines

public static enum TeslaApiDefines.CHARGE_STATE extends Enum<TeslaApiDefines.CHARGE_STATE>
The charge state of the vehicles API can be one of these states. Charging: The vehicle is currently charging. Complete: The vehicle has completed charging. Disconnected: There is currently no charger connected to the vehicle. Stopped: The vehicle was charging but has since stopped. NoPower: There is a charger connected, but it's not delivering power. Starting: The charging process is starting.
  • Enum Constant Details

  • Method Details

    • values

      public static TeslaApiDefines.CHARGE_STATE[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TeslaApiDefines.CHARGE_STATE valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null