class users extends AnyRef
- Alphabetic
- By Inheritance
- users
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def create(givenName: String, familyName: String, emailAddress: String, password: String): User
- def create(givenName: String, familyName: String, email: Email, password: String): User
- def create(name: Name, emailAddress: String, password: String): User
- def create(user: User): User
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
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
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
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.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val photos: photos
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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
- def update(user: User): User
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )