Interface Openapiv2.ContactOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Openapiv2.Contact, Openapiv2.Contact.Builder
    Enclosing class:
    Openapiv2

    public static interface Openapiv2.ContactOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getEmail()
      The email address of the contact person/organization.
      com.google.protobuf.ByteString getEmailBytes()
      The email address of the contact person/organization.
      java.lang.String getName()
      The identifying name of the contact person/organization.
      com.google.protobuf.ByteString getNameBytes()
      The identifying name of the contact person/organization.
      java.lang.String getUrl()
      The URL pointing to the contact information.
      com.google.protobuf.ByteString getUrlBytes()
      The URL pointing to the contact information.
      • 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

      • getName

        java.lang.String getName()
         The identifying name of the contact person/organization.
         
        string name = 1;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         The identifying name of the contact person/organization.
         
        string name = 1;
        Returns:
        The bytes for name.
      • getUrl

        java.lang.String getUrl()
         The URL pointing to the contact information. MUST be in the format of a
         URL.
         
        string url = 2;
        Returns:
        The url.
      • getUrlBytes

        com.google.protobuf.ByteString getUrlBytes()
         The URL pointing to the contact information. MUST be in the format of a
         URL.
         
        string url = 2;
        Returns:
        The bytes for url.
      • getEmail

        java.lang.String getEmail()
         The email address of the contact person/organization. MUST be in the format
         of an email address.
         
        string email = 3;
        Returns:
        The email.
      • getEmailBytes

        com.google.protobuf.ByteString getEmailBytes()
         The email address of the contact person/organization. MUST be in the format
         of an email address.
         
        string email = 3;
        Returns:
        The bytes for email.