com.google.api.PageOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-core-proto Show documentation
Show all versions of grpc-core-proto Show documentation
GoogleAPI classes generated from core protos
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/documentation.proto
package com.google.api;
public interface PageOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.Page)
com.google.protobuf.MessageOrBuilder {
/**
* optional string name = 1;
*
*
* The name of the page. It will be used as an identity of the page to
* generate URI of the page, text of the link to this page in navigation,
* etc. The full page name (start from the root page name to this page
* concatenated with `.`) can be used as reference to the page in your
* documentation. For example:
* <pre><code>pages:
* - name: Tutorial
* content: (== include tutorial.md ==)
* subpages:
* - name: Java
* content: (== include tutorial_java.md ==)
* </code></pre>
* You can reference `Java` page using Markdown reference link syntax:
* `[Java][Tutorial.Java]`.
*
*/
java.lang.String getName();
/**
* optional string name = 1;
*
*
* The name of the page. It will be used as an identity of the page to
* generate URI of the page, text of the link to this page in navigation,
* etc. The full page name (start from the root page name to this page
* concatenated with `.`) can be used as reference to the page in your
* documentation. For example:
* <pre><code>pages:
* - name: Tutorial
* content: (== include tutorial.md ==)
* subpages:
* - name: Java
* content: (== include tutorial_java.md ==)
* </code></pre>
* You can reference `Java` page using Markdown reference link syntax:
* `[Java][Tutorial.Java]`.
*
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* optional string content = 2;
*
*
* The Markdown content of the page. You can use <code>(== include {path} ==)</code>
* to include content from a Markdown file.
*
*/
java.lang.String getContent();
/**
* optional string content = 2;
*
*
* The Markdown content of the page. You can use <code>(== include {path} ==)</code>
* to include content from a Markdown file.
*
*/
com.google.protobuf.ByteString
getContentBytes();
/**
* repeated .google.api.Page subpages = 3;
*
*
* Subpages of this page. The order of subpages specified here will be
* honored in the generated docset.
*
*/
java.util.List
getSubpagesList();
/**
* repeated .google.api.Page subpages = 3;
*
*
* Subpages of this page. The order of subpages specified here will be
* honored in the generated docset.
*
*/
com.google.api.Page getSubpages(int index);
/**
* repeated .google.api.Page subpages = 3;
*
*
* Subpages of this page. The order of subpages specified here will be
* honored in the generated docset.
*
*/
int getSubpagesCount();
/**
* repeated .google.api.Page subpages = 3;
*
*
* Subpages of this page. The order of subpages specified here will be
* honored in the generated docset.
*
*/
java.util.List extends com.google.api.PageOrBuilder>
getSubpagesOrBuilderList();
/**
* repeated .google.api.Page subpages = 3;
*
*
* Subpages of this page. The order of subpages specified here will be
* honored in the generated docset.
*
*/
com.google.api.PageOrBuilder getSubpagesOrBuilder(
int index);
}