Enum EConfigure.MessageCompilerType

    • Enum Constant Detail

      • JAVA_ASSIST

        public static final EConfigure.MessageCompilerType JAVA_ASSIST
        Generates code for a new DataType subclass which serializes and de-serializes an eBus message object. This is the default compiler type.
      • JAVA_INVOKE

        public static final EConfigure.MessageCompilerType JAVA_INVOKE
        Creates a DataType subclasses which uses java.lang.invoke package to serialize, de-serialize eBus message objects. This method should be used only when dynamic Java compilation is not possible.
    • Method Detail

      • values

        public static EConfigure.MessageCompilerType[] 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 (EConfigure.MessageCompilerType c : EConfigure.MessageCompilerType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EConfigure.MessageCompilerType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null