com.paypal.cascade.examples.common.enumeration

MyEnum

object MyEnum extends Serializable

Each Enumeration is implemented as a series of case objects extending a base abstract class, that itself extends Enumeration. Each case object must override stringVal, and the stringVal for each should be unique across all cases of a given Enumeration; no two objects should have the same stringVal value, regardless of uppercase/lowercase.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MyEnum
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. object CaseOne extends MyEnum with Product with Serializable

  5. object CaseTwo extends MyEnum with Product with Serializable

  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. implicit val myEnumReader: EnumReader[MyEnum]

    Several convenience methods for EnumReaders are available in

    Several convenience methods for EnumReaders are available in

    com.paypal.cascade.common.enumeration._

    . Generally, this will be implemented as a pattern match across all the case objects of an Enumeration. If a case object is missing from the pattern match, a non-exhaustive match warning will be raised at compile.

    com.paypal.cascade.common.enumeration._ }}} Generally, this will be implemented as a pattern match across all the case objects of an Enumeration. If a case object is missing from the pattern match, a non-exhaustive match warning will be raised at compile.

  15. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  19. def toString(): String

    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped