java.lang.Object
java.lang.Enum<Outcome>
com.vaadin.kubernetes.starter.sessiontracker.serialization.debug.Outcome
All Implemented Interfaces:
Serializable, Comparable<Outcome>, Constable

public enum Outcome extends Enum<Outcome>
Outcome of the serialization/deserialization process.
  • Enum Constant Details

    • NOT_STARTED

      public static final Outcome NOT_STARTED
      Process has not started.
    • CANCELED

      public static final Outcome CANCELED
      Process has been canceled. May happen only on server shutdown.
    • NOT_SERIALIZABLE_CLASSES

      public static final Outcome NOT_SERIALIZABLE_CLASSES
      Not serializable classes found during serialization phase
    • SERIALIZATION_FAILED

      public static final Outcome SERIALIZATION_FAILED
      Process failed during serialization phase
    • SERIALIZATION_TIMEOUT

      public static final Outcome SERIALIZATION_TIMEOUT
      Serialization did not complete in time
    • DESERIALIZATION_FAILED

      public static final Outcome DESERIALIZATION_FAILED
      Process failed during deserialization phase
    • SUCCESS

      public static final Outcome SUCCESS
      Process completed successfully
  • Method Details

    • values

      public static Outcome[] 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 Outcome 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