Enum Class ReplayPreset

java.lang.Object
java.lang.Enum<ReplayPreset>
com.salesforce.eventbus.protobuf.ReplayPreset
All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<ReplayPreset>, Constable

public enum ReplayPreset extends Enum<ReplayPreset> implements com.google.protobuf.ProtocolMessageEnum

 Supported subscription replay start values.
 By default, the subscription will start at the tip of the stream if ReplayPreset is not specified.
 
Protobuf enum eventbus.v1.ReplayPreset
  • Enum Constant Details

    • LATEST

      public static final ReplayPreset LATEST
       Start the subscription at the tip of the stream.
       
      LATEST = 0;
    • EARLIEST

      public static final ReplayPreset EARLIEST
       Start the subscription at the earliest point in the stream.
       
      EARLIEST = 1;
    • CUSTOM

      public static final ReplayPreset CUSTOM
       Start the subscription after a custom point in the stream. This must be set with a valid replay_id in the FetchRequest.
       
      CUSTOM = 2;
    • UNRECOGNIZED

      public static final ReplayPreset UNRECOGNIZED
  • Field Details

    • LATEST_VALUE

      public static final int LATEST_VALUE
       Start the subscription at the tip of the stream.
       
      LATEST = 0;
      See Also:
    • EARLIEST_VALUE

      public static final int EARLIEST_VALUE
       Start the subscription at the earliest point in the stream.
       
      EARLIEST = 1;
      See Also:
    • CUSTOM_VALUE

      public static final int CUSTOM_VALUE
       Start the subscription after a custom point in the stream. This must be set with a valid replay_id in the FetchRequest.
       
      CUSTOM = 2;
      See Also:
  • Method Details

    • values

      public static ReplayPreset[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ReplayPreset valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getNumber

      public final int getNumber()
      Specified by:
      getNumber in interface com.google.protobuf.Internal.EnumLite
      Specified by:
      getNumber in interface com.google.protobuf.ProtocolMessageEnum
    • valueOf

      @Deprecated public static ReplayPreset valueOf(int value)
      Deprecated.
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      value - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • forNumber

      public static ReplayPreset forNumber(int value)
      Parameters:
      value - The numeric wire value of the corresponding enum entry.
      Returns:
      The enum associated with the given numeric wire value.
    • internalGetValueMap

      public static com.google.protobuf.Internal.EnumLiteMap<ReplayPreset> internalGetValueMap()
    • getValueDescriptor

      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      Specified by:
      getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
    • getDescriptorForType

      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      Specified by:
      getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
    • getDescriptor

      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
    • valueOf

      public static ReplayPreset valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      desc - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null