Packages

final case class Tender(IdentifiedObject: IdentifiedObject = null, amount: Double = 0.0, change: Double = 0.0, kind: String = null, Card: String = null, Cheque: String = null, Receipt: String = null) extends Element with Product with Serializable

Tender is what is "offered" by the customer towards making a payment and is often more than the required payment (hence the need for 'change').

The payment is thus that part of the Tender that goes towards settlement of a particular transaction. Tender is modelled as an aggregation of Cheque and Card. Both these tender types can exist in a single tender bid thus 'accountHolderName' has to exist separately in each of Cheque and Card as each could have a different account holder name.

IdentifiedObject

IdentifiedObject Reference to the superclass object.

amount

Amount tendered by customer.

change

Difference between amount tendered by customer and the amount charged by point of sale.

kind

Kind of tender from customer.

Card

Card Card used to tender payment.

Cheque

Cheque Cheque used to tender payment.

Receipt

Receipt Receipt that recorded this receiving of a payment in the form of tenders.

Linear Supertypes
Element, Product, Equals, Cloneable, Cloneable, Row, Serializable, Serializable, AnyRef, Any
Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. Tender
  2. Element
  3. Product
  4. Equals
  5. Cloneable
  6. Cloneable
  7. Row
  8. Serializable
  9. Serializable
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Tender(IdentifiedObject: IdentifiedObject = null, amount: Double = 0.0, change: Double = 0.0, kind: String = null, Card: String = null, Cheque: String = null, Receipt: String = null)

    IdentifiedObject

    IdentifiedObject Reference to the superclass object.

    amount

    Amount tendered by customer.

    change

    Difference between amount tendered by customer and the amount charged by point of sale.

    kind

    Kind of tender from customer.

    Card

    Card Card used to tender payment.

    Cheque

    Cheque Cheque used to tender payment.

    Receipt

    Receipt Receipt that recorded this receiving of a payment in the form of tenders.

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. val Card: String
  5. val Cheque: String
  6. val IdentifiedObject: IdentifiedObject
  7. val Receipt: String
  8. def about: Boolean

    Flag for rdf:about elements.

    Flag for rdf:about elements.

    returns

    true if this is an rdf:about element, false otherwise.

    Definition Classes
    Element
  9. val amount: Double
  10. def anyNull: Boolean
    Definition Classes
    Row
  11. def apply(i: Int): Any
    Definition Classes
    Row
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def baseclass: String

    This class name.

    This class name.

    returns

    the class name without the package prefixes

    Definition Classes
    Element
  14. val bitfields: Array[Int]

    Valid fields bitmap.

    Valid fields bitmap.

    One (1) in a bit position means that field was found in parsing, zero means it has an indeterminate value. Field order is specified by the fields array.

    For classes constructed manually, we initially fill this in with the worst case scenario. ToDo: this won't work for classes with more than 128 fields (so far none).

    Definition Classes
    Element
  15. val change: Double
  16. def classes: Seq[String]

    This class and the hierarchical list of classes this class derives from.

    This class and the hierarchical list of classes this class derives from.

    returns

    the list of classes without the package prefixes.

    Definition Classes
    Element
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  18. def copy(): Row

    Return a copy of this object as a Row.

    Return a copy of this object as a Row.

    Creates a clone of this object for use in Row manipulations.

    returns

    The copy of the object.

    Definition Classes
    Tender → Row
  19. def emit_attribute(field: String, value: Any)(implicit clz: String, s: StringBuilder): Unit

    Emit one XML attribute.

    Emit one XML attribute.

    field

    The name of the field.

    value

    The value of the field.

    clz

    The class name (e.g. ACLineSegment) of this element

    s

    The builder to write into.

    Definition Classes
    Element
    Example:
    1. <cim:Location.CoordinateSystem rdf:resource="#wgs84"/>

  20. def emit_element(field: String, value: Any)(implicit clz: String, s: StringBuilder): Unit

    Emit one XML element.

    Emit one XML element.

    field

    The name of the field.

    value

    The value of the field.

    clz

    The class name (e.g. ACLineSegment) of this element

    s

    The builder to write into.

    Definition Classes
    Element
    Example:
    1. <cim:IdentifiedObject.name>WGS 84</cim:IdentifiedObject.name>

  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(o: Any): Boolean
    Definition Classes
    Row → AnyRef → Any
  23. def export: String

    Return a string containing this object as XML.

    Return a string containing this object as XML.

    returns

    The XML corresponding to this object.

    Definition Classes
    TenderElement
  24. def export_fields: String

    Return a string containing the fields of this object suitable for inclusion in an XML object.

    Return a string containing the fields of this object suitable for inclusion in an XML object.

    returns

    A string with the fields coded in XML

    Definition Classes
    TenderElement
  25. def fieldIndex(name: String): Int
    Definition Classes
    Row
  26. def get(i: Int): AnyRef

    Get the value of the field at index i.

    Get the value of the field at index i.

    i

    The index of the field desired.

    returns

    The value stored in the field, or null if none.

    Definition Classes
    Element → Row
  27. def getAs[T](fieldName: String): T
    Definition Classes
    Row
  28. def getAs[T](i: Int): T
    Definition Classes
    Row
  29. def getBoolean(i: Int): Boolean
    Definition Classes
    Row
  30. def getByte(i: Int): Byte
    Definition Classes
    Row
  31. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  32. def getDate(i: Int): Date
    Definition Classes
    Row
  33. def getDecimal(i: Int): BigDecimal
    Definition Classes
    Row
  34. def getDouble(i: Int): Double
    Definition Classes
    Row
  35. def getFloat(i: Int): Float
    Definition Classes
    Row
  36. def getInstant(i: Int): Instant
    Definition Classes
    Row
  37. def getInt(i: Int): Int
    Definition Classes
    Row
  38. def getJavaMap[K, V](i: Int): Map[K, V]
    Definition Classes
    Row
  39. def getList[T](i: Int): List[T]
    Definition Classes
    Row
  40. def getLocalDate(i: Int): LocalDate
    Definition Classes
    Row
  41. def getLong(i: Int): Long
    Definition Classes
    Row
  42. def getMap[K, V](i: Int): Map[K, V]
    Definition Classes
    Row
  43. def getSeq[T](i: Int): Seq[T]
    Definition Classes
    Row
  44. def getShort(i: Int): Short
    Definition Classes
    Row
  45. def getString(i: Int): String
    Definition Classes
    Row
  46. def getStruct(i: Int): Row
    Definition Classes
    Row
  47. def getTimestamp(i: Int): Timestamp
    Definition Classes
    Row
  48. def getValuesMap[T](fieldNames: Seq[String]): Map[String, T]
    Definition Classes
    Row
  49. def hashCode(): Int
    Definition Classes
    Row → AnyRef → Any
  50. def id: String

    Return the unique ID for the object, the mRID for IdentifiedObject derived classes.

    Return the unique ID for the object, the mRID for IdentifiedObject derived classes.

    returns

    The object ID.

    Definition Classes
    Element
  51. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  52. def isNullAt(i: Int): Boolean
    Definition Classes
    Row
  53. def json: String
    Definition Classes
    Row
    Annotations
    @Unstable()
  54. val kind: String
  55. def length: Int

    The number of fields in the object definition.

    The number of fields in the object definition.

    returns

    The number of defined fields for use in Row manipulations.

    Definition Classes
    Element → Row
  56. def mask(position: Int): Boolean

    Is a field present predicate.

    Is a field present predicate.

    Determines if the field at the given position was encountered while parsing.

    position

    the field position in the fields array

    returns

    true if the field was parsed, false otherwise.

    Definition Classes
    Element
  57. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    Row
  58. def mkString(sep: String): String
    Definition Classes
    Row
  59. def mkString: String
    Definition Classes
    Row
  60. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  61. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  62. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  63. def prettyJson: String
    Definition Classes
    Row
    Annotations
    @Unstable()
  64. def schema: StructType
    Definition Classes
    Row
  65. def size: Int
    Definition Classes
    Row
  66. def sup: IdentifiedObject

    Return the superclass object.

    Return the superclass object.

    returns

    The typed superclass nested object.

    Definition Classes
    TenderElement
  67. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  68. def toSeq: Seq[Any]
    Definition Classes
    Row
  69. def toString(): String
    Definition Classes
    Row → AnyRef → Any
  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( ... ) @native()
  72. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Element

Inherited from Product

Inherited from Equals

Inherited from Cloneable

Inherited from Cloneable

Inherited from Row

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Hierarchy

Row

Serialization

Ungrouped