Trait

org.opencypher.okapi.api.value.CypherValue

CypherValue

Related Doc: package CypherValue

Permalink

sealed trait CypherValue extends Any

CypherValue is a wrapper for Scala/Java classes that represent valid Cypher values.

Linear Supertypes
Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CypherValue
  2. 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 getValue: Option[Any]

    Permalink

    returns

    null-safe version of value

  3. abstract def unwrap: Any

    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.

  4. abstract def value: Any

    Permalink

    returns

    wrapped value

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

  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.

  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 hashCode(): Int

    Permalink

    Hash code of the Scala representation.

    Hash code of the Scala representation.

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

    Permalink
    Definition Classes
    Any
  10. def isNull: Boolean

    Permalink

    returns

    true iff the stored value is null.

  11. 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.

  12. def toString(): String

    Permalink

    String of the Scala representation of this value.

    String of the Scala representation of this value.

    Definition Classes
    CypherValue → Any

Inherited from Any

Ungrouped