Interface BoolDomainOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    BoolDomain, BoolDomain.Builder

    public interface BoolDomainOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getFalseValue()
      optional string false_value = 3;
      com.google.protobuf.ByteString getFalseValueBytes()
      optional string false_value = 3;
      String getName()
      Id of the domain.
      com.google.protobuf.ByteString getNameBytes()
      Id of the domain.
      String getTrueValue()
      Strings values for TRUE/FALSE.
      com.google.protobuf.ByteString getTrueValueBytes()
      Strings values for TRUE/FALSE.
      boolean hasFalseValue()
      optional string false_value = 3;
      boolean hasName()
      Id of the domain.
      boolean hasTrueValue()
      Strings values for TRUE/FALSE.
      • 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

      • hasName

        boolean hasName()
         Id of the domain. Required if the domain is defined at the schema level. If
         so, then the name must be unique within the schema.
         
        optional string name = 1;
        Returns:
        Whether the name field is set.
      • getName

        String getName()
         Id of the domain. Required if the domain is defined at the schema level. If
         so, then the name must be unique within the schema.
         
        optional string name = 1;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         Id of the domain. Required if the domain is defined at the schema level. If
         so, then the name must be unique within the schema.
         
        optional string name = 1;
        Returns:
        The bytes for name.
      • hasTrueValue

        boolean hasTrueValue()
         Strings values for TRUE/FALSE.
         
        optional string true_value = 2;
        Returns:
        Whether the trueValue field is set.
      • getTrueValue

        String getTrueValue()
         Strings values for TRUE/FALSE.
         
        optional string true_value = 2;
        Returns:
        The trueValue.
      • getTrueValueBytes

        com.google.protobuf.ByteString getTrueValueBytes()
         Strings values for TRUE/FALSE.
         
        optional string true_value = 2;
        Returns:
        The bytes for trueValue.
      • hasFalseValue

        boolean hasFalseValue()
        optional string false_value = 3;
        Returns:
        Whether the falseValue field is set.
      • getFalseValue

        String getFalseValue()
        optional string false_value = 3;
        Returns:
        The falseValue.
      • getFalseValueBytes

        com.google.protobuf.ByteString getFalseValueBytes()
        optional string false_value = 3;
        Returns:
        The bytes for falseValue.