Interface GridCacheSqlIndexMetadata

    • Method Detail

      • name

        String name()
        Gets name of the index.
        Returns:
        Index name.
      • fields

        Collection<String> fields()
        Gets names of fields indexed by this index.
        Returns:
        Indexed fields names.
      • descending

        boolean descending​(String field)
        Gets order of the index for each indexed field.
        Parameters:
        field - Field name.
        Returns:
        True if given field is indexed in descending order.
      • unique

        boolean unique()
        Gets whether this is a unique index.
        Returns:
        True if index is unique, false otherwise.