Interface FlagOrBuilder

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

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

    Modifier and Type
    Method
    Description
    boolean
    Whether the value for this flag has conditionally changed from the default state.
    Flag name
    com.google.protobuf.ByteString
    Flag name
    Value associated with this flag.
    com.google.protobuf.ByteString
    Value associated with this flag.

    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 Details

    • getName

      String getName()
       Flag name
       
      string name = 1;
      Returns:
      The name.
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
       Flag name
       
      string name = 1;
      Returns:
      The bytes for name.
    • getValue

      String getValue()
       Value associated with this flag.
       
      string value = 2;
      Returns:
      The value.
    • getValueBytes

      com.google.protobuf.ByteString getValueBytes()
       Value associated with this flag.
       
      string value = 2;
      Returns:
      The bytes for value.
    • getConditionChanged

      boolean getConditionChanged()
       Whether the value for this flag has conditionally changed from the default state.
       
      bool condition_changed = 3;
      Returns:
      The conditionChanged.