Packages

class KVIndex extends Annotation with Annotation with ClassfileAnnotation

Linear Supertypes
ClassfileAnnotation, StaticAnnotation, Annotation, Annotation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. KVIndex
  2. ClassfileAnnotation
  3. StaticAnnotation
  4. Annotation
  5. Annotation
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new KVIndex()

Abstract Value Members

  1. abstract def annotationType(): Class[_ <: Annotation]
    Definition Classes
    Annotation
  2. abstract def copy(): Boolean

    Whether to copy the instance's data to the index, instead of just storing a pointer to the data.

    Whether to copy the instance's data to the index, instead of just storing a pointer to the data. The default behavior is to just store a reference; that saves disk space but is slower to read, since there's a level of indirection.

    Annotations
    @AnnotationDefault()
  3. abstract def parent(): String

    The name of the parent index of this index.

    The name of the parent index of this index. By default there is no parent index, so the generated data can be retrieved without having to provide a parent value.

    If a parent index is defined, iterating over the data using the index will require providing a single value for the parent index. This serves as a rudimentary way to provide relationships between entities in the store.

    Annotations
    @AnnotationDefault()
  4. abstract def value(): String

    The name of the index to be created for the annotated entity.

    The name of the index to be created for the annotated entity. Must be unique within the class. Index names are not allowed to start with an underscore (that's reserved for internal use). The default value is the natural index name (which is always a copy index regardless of the annotation's values).

    Annotations
    @AnnotationDefault()

Concrete 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from ClassfileAnnotation

Inherited from StaticAnnotation

Inherited from Annotation

Inherited from Annotation

Inherited from AnyRef

Inherited from Any

Ungrouped