Package

com.github.vickumar1981.svalidate.example

model

Permalink

package model

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. model
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Address(street: String, city: String, state: String, zipCode: String) extends Product with Serializable

    Permalink
  2. case class ContactSettings(hasFacebookContacts: Option[Boolean] = Some(true), hasTwitterContacts: Option[Boolean] = Some(true)) extends Product with Serializable

    Permalink
  3. case class Contacts(facebook: Option[List[String]] = None, twitter: Option[List[String]] = None) extends Product with Serializable

    Permalink
  4. case class Person(firstName: String, lastName: String, hasContactInfo: Boolean, address: Option[Address] = None, phone: Option[String] = None) extends Product with Serializable

    Permalink

Value Members

  1. implicit object AddressValidator extends Validatable[Address]

    Permalink
  2. implicit object ContactInfoValidator extends ValidatableWith[Contacts, ContactSettings]

    Permalink
  3. implicit object PersonValidator extends Validatable[Person]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped