Packages

class users extends AnyRef

Created by davenpcm on 5/3/16.

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

Instance Constructors

  1. new users(directory: Directory)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def create(givenName: String, familyName: String, emailAddress: String, password: String): User
  7. def create(givenName: String, familyName: String, email: Email, password: String): User
  8. def create(name: Name, emailAddress: String, password: String): User
  9. def create(user: User): User
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def get(identifier: String): Either[Throwable, User]

    This returns the user from a string.

    This returns the user from a string. Be Aware this user

    identifier

    The identifier used to get the user

  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def list(domain: String = "eckerd.edu"): List[User]

    This is a simple user accumulation function that collects all users in eckerd.

    This is a simple user accumulation function that collects all users in eckerd. It does no additional modification so that you can easily move from users to whatever other form you would like and do those pieces of data manipulation after all the users have been returned.

  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  21. val photos: photos
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. def transformAllGoogleUsers[T](domain: String = "eckerd.edu", orderBy: String = "email", resultsPerPage: Int = 500)(f: (User) ⇒ T): List[T]

    This function is a Type free implementation that allows you to tell you what type you are expecting as a return and it will fully type check that you are getting the type you want back.

    This function is a Type free implementation that allows you to tell you what type you are expecting as a return and it will fully type check that you are getting the type you want back.

    T

    This is any type that you want to return from the google users.

    f

    This is a transformation function that takes a User and Transforms it to Type T

    returns

    Returns a List of Type T

  25. def update(user: User): User
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped