Trait

org.opencypher.okapi.api.value.CypherValue

PrimitiveCypherValue

Related Doc: package CypherValue

Permalink

trait PrimitiveCypherValue[+T] extends MaterialCypherValue[T]

A primitive Cypher value is one that does not contain any other Cypher values.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PrimitiveCypherValue
  2. MaterialCypherValue
  3. CypherValue
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getClass(): Class[_]

    Permalink
    Definition Classes
    Any
  2. abstract def value: T

    Permalink

    returns

    wrapped value

    Definition Classes
    MaterialCypherValueCypherValue

Concrete Value Members

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

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. def as[V](implicit arg0: ClassTag[V]): Option[V]

    Permalink

    Safe version of cast

    Safe version of cast

    Definition Classes
    CypherValue
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def cast[V](implicit arg0: ClassTag[V]): V

    Permalink

    Attempts to cast the Cypher value to V, fails when this is not supported.

    Attempts to cast the Cypher value to V, fails when this is not supported.

    Definition Classes
    CypherValue
  7. def equals(other: Any): Boolean

    Permalink

    Structural comparison of the Scala representation.

    Structural comparison of the Scala representation.

    This is NOT Cypher equality or equivalence.

    Definition Classes
    CypherValue → Any
  8. def getValue: Option[T]

    Permalink

    returns

    null-safe version of value

    Definition Classes
    MaterialCypherValueCypherValue
  9. def hashCode(): Int

    Permalink

    Hash code of the Scala representation.

    Hash code of the Scala representation.

    Definition Classes
    CypherValue → Any
  10. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  11. def isNull: Boolean

    Permalink

    returns

    true iff the stored value is null.

    Definition Classes
    CypherValue
  12. def toCypherString: String

    Permalink

    A Cypher string representation.

    A Cypher string representation. For more information about the exact format of these, please refer to the openCypher TCK.

    Definition Classes
    CypherValue
  13. def toString(): String

    Permalink

    String of the Scala representation of this value.

    String of the Scala representation of this value.

    Definition Classes
    CypherValue → Any
  14. def unwrap: T

    Permalink

    returns

    unwraps the Cypher value into Scala/Java structures. Unlike value this is done recursively for the Cypher values stored inside of maps and lists.

    Definition Classes
    PrimitiveCypherValueCypherValue

Inherited from MaterialCypherValue[T]

Inherited from CypherValue

Inherited from Any

Ungrouped