Enum Class StreamAction

java.lang.Object
java.lang.Enum<StreamAction>
org.red5.io.object.StreamAction
All Implemented Interfaces:
Serializable, Comparable<StreamAction>, java.lang.constant.Constable

public enum StreamAction extends Enum<StreamAction>
Represents all the actions which may be permitted on a stream. Some actions are called by client implementations other than a Flash Player itself; ex "getStreamLength". If an action is not specified here, the "CUSTOM" enum will be returned.
Author:
Paul Gregoire
  • Enum Constant Details

  • Field Details

  • Constructor Details

    • StreamAction

      private StreamAction(String actionString)
  • Method Details

    • values

      public static StreamAction[] 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 StreamAction 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
    • getActionString

      public String getActionString()
    • getEnum

      public static StreamAction getEnum(String actionString)
    • equalsAction

      public boolean equalsAction(StreamAction action)
    • equalsAction

      public boolean equalsAction(String actionString)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<StreamAction>