com.foursquare.thriftexample.people

RawPerson

final class RawPerson extends JavaPersonRaw[ContactInfo, Person, RawPerson, PersonMeta] with MutablePerson

Linear Supertypes
MutablePerson, Person, TBase[Person, Person._Fields], Serializable, JavaPersonRaw[ContactInfo, Person, RawPerson, PersonMeta], JavaPersonMutable[ContactInfo, Person, RawPerson, PersonMeta], MutableRecord[Person], JavaPerson[ContactInfo, Person, RawPerson, PersonMeta], Record[Person], Ordered[Person], Comparable[Person], UntypedRecord, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RawPerson
  2. MutablePerson
  3. Person
  4. TBase
  5. Serializable
  6. JavaPersonRaw
  7. JavaPersonMutable
  8. MutableRecord
  9. JavaPerson
  10. Record
  11. Ordered
  12. Comparable
  13. UntypedRecord
  14. AnyRef
  15. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RawPerson()

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def <(that: Person): Boolean

    Definition Classes
    Person → Ordered
  5. def <=(that: Person): Boolean

    Definition Classes
    Person → Ordered
  6. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  8. def >(that: Person): Boolean

    Definition Classes
    Person → Ordered
  9. def >=(that: Person): Boolean

    Definition Classes
    Person → Ordered
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clear(): Unit

    Definition Classes
    RawPerson → TBase
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def compare(that: Person): Int

    Definition Classes
    Person → Ordered
  14. def compareTo(that: Person): Int

    Definition Classes
    Person → Ordered → Comparable
  15. def contacts(): Seq[ContactInfo]

    Definition Classes
    RawPerson → JavaPerson
  16. def contactsIsSet(): Boolean

    Definition Classes
    RawPerson → JavaPerson
  17. def contactsOption(): Option[Seq[ContactInfo]]

    Definition Classes
    RawPerson → JavaPerson
  18. def contactsOrDefault(): Seq[ContactInfo]

    Definition Classes
    RawPerson → JavaPerson
  19. def contactsOrNull(): Seq[ContactInfo]

    Definition Classes
    RawPerson → JavaPerson
  20. def contactsOrThrow(): Seq[ContactInfo]

    Definition Classes
    RawPerson → JavaPerson
  21. def contactsUnset(): Unit

    Definition Classes
    RawPersonMutablePerson
  22. def contacts_=(x: Seq[ContactInfo]): Unit

    Definition Classes
    RawPersonMutablePerson
  23. def copy(firstName: String = firstNameOrNull, lastName: String = lastNameOrNull, gender: Gender = genderOrNull, contacts: Seq[ContactInfo] = contactsOrNull): RawPerson

    Definition Classes
    RawPersonMutablePersonPerson
  24. def deepCopy(): RawPerson

    Definition Classes
    RawPersonPerson → TBase
  25. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. def equals(that: Person): Boolean

  27. def equals(that: Any): Boolean

    Definition Classes
    RawPerson → AnyRef → Any
  28. def fieldForId(id: Int): Person._Fields

    Definition Classes
    RawPerson → TBase
  29. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  30. def firstName(): String

    Definition Classes
    RawPerson → JavaPerson
  31. def firstNameIsSet(): Boolean

    Definition Classes
    RawPerson → JavaPerson
  32. def firstNameOption(): Option[String]

    Definition Classes
    RawPerson → JavaPerson
  33. def firstNameOrNull(): String

    Definition Classes
    RawPerson → JavaPerson
  34. def firstNameOrThrow(): String

    Definition Classes
    RawPerson → JavaPerson
  35. def firstNameUnset(): Unit

    Definition Classes
    RawPersonMutablePerson
  36. def firstName_=(x: String): Unit

    Definition Classes
    RawPersonMutablePerson
  37. def gender(): Gender

    Definition Classes
    RawPerson → JavaPerson
  38. def genderIsSet(): Boolean

    Definition Classes
    RawPerson → JavaPerson
  39. def genderOption(): Option[Gender]

    Definition Classes
    RawPerson → JavaPerson
  40. def genderOrNull(): Gender

    Definition Classes
    RawPerson → JavaPerson
  41. def genderOrThrow(): Gender

    Definition Classes
    RawPerson → JavaPerson
  42. def genderUnset(): Unit

    Definition Classes
    RawPersonMutablePerson
  43. def gender_=(x: Gender): Unit

    Definition Classes
    RawPersonMutablePerson
  44. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  45. def getFieldValue(field: Person._Fields): AnyRef

    Definition Classes
    RawPerson → TBase
  46. def getSetFields: Seq[Any]

  47. def hashCode(): Int

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

    Definition Classes
    Any
  49. def isSet(field: Person._Fields): Boolean

    Definition Classes
    RawPerson → TBase
  50. def lastNameIsSet(): Boolean

    Definition Classes
    RawPerson → JavaPerson
  51. def lastNameOption(): Option[String]

    Definition Classes
    RawPerson → JavaPerson
  52. def lastNameOrNull(): String

    Definition Classes
    RawPerson → JavaPerson
  53. def lastNameOrThrow(): String

    Definition Classes
    RawPerson → JavaPerson
  54. def lastNameUnset(): Unit

    Definition Classes
    RawPersonMutablePerson
  55. def lastName_=(x: String): Unit

    Definition Classes
    RawPersonMutablePerson
  56. def merge(that: Person): Unit

    Definition Classes
    RawPersonMutablePerson → MutableRecord
  57. def mergeCopy(that: Person): Person

    Definition Classes
    RawPersonPerson → Record
  58. def meta: PersonMeta

    Definition Classes
    RawPersonPerson → Record → UntypedRecord
  59. def mutable: MutablePerson

    Returns a pointer to a Mutable version of this record.

    Returns a pointer to a Mutable version of this record.

    If the underlying implementation is mutable, this will be returned. If the underlying implementation is immutable, a mutable copy will be returned.

    After mutating the instance returned by this method, the original instance (on which mutable was called) will be in an undefined state. It may or may not have been modified, depending on whether it was immutable or not.

    This is included as an optimization for when we want access to a Mutable record but don't want to pay the cost of copying every time.

    Definition Classes
    MutablePersonPerson
  60. def mutableCopy(): MutablePerson

    Definition Classes
    Person
  61. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  64. def read(iprot: TProtocol): Unit

    Definition Classes
    RawPerson → TBase → UntypedRecord
  65. def setFieldValue(field: Person._Fields, value: AnyRef): Unit

    Definition Classes
    RawPerson → TBase
  66. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  67. def toBuilder(): AllSpecified

    Definition Classes
    Person
  68. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  72. def write(oprot: TProtocol): Unit

    Definition Classes
    RawPersonPerson → TBase → UntypedRecord

Inherited from MutablePerson

Inherited from Person

Inherited from TBase[Person, Person._Fields]

Inherited from Serializable

Inherited from JavaPersonRaw[ContactInfo, Person, RawPerson, PersonMeta]

Inherited from JavaPersonMutable[ContactInfo, Person, RawPerson, PersonMeta]

Inherited from MutableRecord[Person]

Inherited from JavaPerson[ContactInfo, Person, RawPerson, PersonMeta]

Inherited from Record[Person]

Inherited from Ordered[Person]

Inherited from Comparable[Person]

Inherited from UntypedRecord

Inherited from AnyRef

Inherited from Any

Ungrouped