Enum Class RConf

java.lang.Object
java.lang.Enum<RConf>
jason.infra.local.RConf
All Implemented Interfaces:
Serializable, Comparable<RConf>, Constable

public enum RConf extends Enum<RConf>
configuration values for agent execution model (threads, pools, synch, asynch,...)
  • Enum Constant Details

    • THREADED

      public static final RConf THREADED
    • POOL_SYNCH

      public static final RConf POOL_SYNCH
    • POOL_SYNCH_SCHEDULED

      public static final RConf POOL_SYNCH_SCHEDULED
    • ASYNCH

      public static final RConf ASYNCH
    • ASYNCH_SHARED_POOLS

      public static final RConf ASYNCH_SHARED_POOLS
  • Method Details

    • values

      public static RConf[] 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 RConf 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<RConf>
    • fromString

      public static RConf fromString(String text)