Interface CoreServiceProto.ListFeaturesRequest.FilterOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean containsLabels​(String key)
      User defined metadata for feature.
      String getEntities​(int index)
      List of entities contained within the featureSet that the feature belongs to.
      com.google.protobuf.ByteString getEntitiesBytes​(int index)
      List of entities contained within the featureSet that the feature belongs to.
      int getEntitiesCount()
      List of entities contained within the featureSet that the feature belongs to.
      List<String> getEntitiesList()
      List of entities contained within the featureSet that the feature belongs to.
      Map<String,​String> getLabels()
      Deprecated.
      int getLabelsCount()
      User defined metadata for feature.
      Map<String,​String> getLabelsMap()
      User defined metadata for feature.
      String getLabelsOrDefault​(String key, String defaultValue)
      User defined metadata for feature.
      String getLabelsOrThrow​(String key)
      User defined metadata for feature.
      String getProject()
      Name of project that the feature sets belongs to.
      com.google.protobuf.ByteString getProjectBytes()
      Name of project that the feature sets belongs to.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getLabelsCount

        int getLabelsCount()
         User defined metadata for feature.
         Features with all matching labels will be returned.
         
        map<string, string> labels = 1;
      • containsLabels

        boolean containsLabels​(String key)
         User defined metadata for feature.
         Features with all matching labels will be returned.
         
        map<string, string> labels = 1;
      • getLabelsMap

        Map<String,​String> getLabelsMap()
         User defined metadata for feature.
         Features with all matching labels will be returned.
         
        map<string, string> labels = 1;
      • getLabelsOrDefault

        String getLabelsOrDefault​(String key,
                                  String defaultValue)
         User defined metadata for feature.
         Features with all matching labels will be returned.
         
        map<string, string> labels = 1;
      • getLabelsOrThrow

        String getLabelsOrThrow​(String key)
         User defined metadata for feature.
         Features with all matching labels will be returned.
         
        map<string, string> labels = 1;
      • getEntitiesList

        List<String> getEntitiesList()
         List of entities contained within the featureSet that the feature belongs to.
         Only feature sets with these entities will be searched for features.
         
        repeated string entities = 2;
        Returns:
        A list containing the entities.
      • getEntitiesCount

        int getEntitiesCount()
         List of entities contained within the featureSet that the feature belongs to.
         Only feature sets with these entities will be searched for features.
         
        repeated string entities = 2;
        Returns:
        The count of entities.
      • getEntities

        String getEntities​(int index)
         List of entities contained within the featureSet that the feature belongs to.
         Only feature sets with these entities will be searched for features.
         
        repeated string entities = 2;
        Parameters:
        index - The index of the element to return.
        Returns:
        The entities at the given index.
      • getEntitiesBytes

        com.google.protobuf.ByteString getEntitiesBytes​(int index)
         List of entities contained within the featureSet that the feature belongs to.
         Only feature sets with these entities will be searched for features.
         
        repeated string entities = 2;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the entities at the given index.
      • getProject

        String getProject()
         Name of project that the feature sets belongs to. Filtering on projects is disabled. 
         It is NOT possible to provide an asterisk with a string in order to do pattern matching.
         If unspecified this field will default to the default project 'default'.
         
        string project = 3;
        Returns:
        The project.
      • getProjectBytes

        com.google.protobuf.ByteString getProjectBytes()
         Name of project that the feature sets belongs to. Filtering on projects is disabled. 
         It is NOT possible to provide an asterisk with a string in order to do pattern matching.
         If unspecified this field will default to the default project 'default'.
         
        string project = 3;
        Returns:
        The bytes for project.