Enum BeliefSystemType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<BeliefSystemType>

    public enum BeliefSystemType
    extends java.lang.Enum<BeliefSystemType>
    This enum represents all engine supported belief systems
    • Method Detail

      • values

        public static BeliefSystemType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (BeliefSystemType c : BeliefSystemType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BeliefSystemType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • toExternalForm

        public java.lang.String toExternalForm()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<BeliefSystemType>
      • getId

        public java.lang.String getId()
      • resolveBeliefSystemType

        public static BeliefSystemType resolveBeliefSystemType​(java.lang.String id)