Interface Messages.GherkinDocument.FeatureOrBuilder

    • Method Detail

      • hasLocation

        boolean hasLocation()
         The location of the `Feature` keyword
         
        .io.cucumber.messages.Location location = 1;
      • getLocation

        Messages.Location getLocation()
         The location of the `Feature` keyword
         
        .io.cucumber.messages.Location location = 1;
      • getLocationOrBuilder

        Messages.LocationOrBuilder getLocationOrBuilder()
         The location of the `Feature` keyword
         
        .io.cucumber.messages.Location location = 1;
      • getTags

        Messages.GherkinDocument.Feature.Tag getTags​(int index)
         All the tags placed above the `Feature` keyword
         
        repeated .io.cucumber.messages.GherkinDocument.Feature.Tag tags = 2;
      • getTagsCount

        int getTagsCount()
         All the tags placed above the `Feature` keyword
         
        repeated .io.cucumber.messages.GherkinDocument.Feature.Tag tags = 2;
      • getLanguage

        String getLanguage()
         The [ISO 639-1](https://en.wikipedia.org/wiki/ISO_639-1) language code of the Gherkin document
         
        string language = 3;
      • getLanguageBytes

        com.google.protobuf.ByteString getLanguageBytes()
         The [ISO 639-1](https://en.wikipedia.org/wiki/ISO_639-1) language code of the Gherkin document
         
        string language = 3;
      • getKeyword

        String getKeyword()
         The text of the `Feature` keyword (in the language specified by `language`)
         
        string keyword = 4;
      • getKeywordBytes

        com.google.protobuf.ByteString getKeywordBytes()
         The text of the `Feature` keyword (in the language specified by `language`)
         
        string keyword = 4;
      • getName

        String getName()
         The name of the feature (the text following the `keyword`)
         
        string name = 5;
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         The name of the feature (the text following the `keyword`)
         
        string name = 5;
      • getDescription

        String getDescription()
         The line(s) underneath the line with the `keyword` that are used as description
         
        string description = 6;
      • getDescriptionBytes

        com.google.protobuf.ByteString getDescriptionBytes()
         The line(s) underneath the line with the `keyword` that are used as description
         
        string description = 6;
      • getChildrenCount

        int getChildrenCount()
         Zero or more children
         
        repeated .io.cucumber.messages.GherkinDocument.Feature.FeatureChild children = 7;