Notation used in Ruby API documentation
Module: lay
Description: Specifies the interpreter used for executing a macro
This class is equivalent to the class Macro::Interpreter
This enum has been introduced in version 0.27.5.
new Macro::Interpreter ptr | new | (int i) | Creates an enum from an integer value |
new Macro::Interpreter ptr | new | (string s) | Creates an enum from a string value |
[const] | bool | != | (const Macro::Interpreter other) | Compares two enums for inequality |
[const] | bool | != | (int other) | Compares an enum with an integer for inequality |
[const] | bool | < | (const Macro::Interpreter other) | Returns true if the first enum is less (in the enum symbol order) than the second |
[const] | bool | < | (int other) | Returns true if the enum is less (in the enum symbol order) than the integer value |
[const] | bool | == | (const Macro::Interpreter other) | Compares two enums |
[const] | bool | == | (int other) | Compares an enum with an integer value |
[const] | int | hash | Gets the hash value from the enum | |
[const] | string | inspect | Converts an enum to a visual string | |
[const] | int | to_i | Gets the integer value from the enum | |
[const] | string | to_s | Gets the symbolic string from an enum |
[static,const] | Macro::Interpreter | DSLInterpreter | A domain-specific interpreter (DSL) | |
[static,const] | Macro::Interpreter | None | No specific interpreter | |
[static,const] | Macro::Interpreter | Python | The interpreter is Python | |
[static,const] | Macro::Interpreter | Ruby | The interpreter is Ruby | |
[static,const] | Macro::Interpreter | Text | Plain text |
!= | (1) Signature: [const] bool != (const Macro::Interpreter other) Description: Compares two enums for inequality |
(2) Signature: [const] bool != (int other) Description: Compares an enum with an integer for inequality | |
< | (1) Signature: [const] bool < (const Macro::Interpreter other) Description: Returns true if the first enum is less (in the enum symbol order) than the second |
(2) Signature: [const] bool < (int other) Description: Returns true if the enum is less (in the enum symbol order) than the integer value | |
== | (1) Signature: [const] bool == (const Macro::Interpreter other) Description: Compares two enums |
(2) Signature: [const] bool == (int other) Description: Compares an enum with an integer value | |
DSLInterpreter | Signature: [static,const] Macro::Interpreter DSLInterpreter Description: A domain-specific interpreter (DSL) Python specific notes: |
None | Signature: [static,const] Macro::Interpreter None Description: No specific interpreter Python specific notes: |
Python | Signature: [static,const] Macro::Interpreter Python Description: The interpreter is Python Python specific notes: |
Ruby | Signature: [static,const] Macro::Interpreter Ruby Description: The interpreter is Ruby Python specific notes: |
Text | Signature: [static,const] Macro::Interpreter Text Description: Plain text Python specific notes: |
hash | Signature: [const] int hash Description: Gets the hash value from the enum Python specific notes: |
inspect | Signature: [const] string inspect Description: Converts an enum to a visual string Python specific notes: |
new | (1) Signature: [static] new Macro::Interpreter ptr new (int i) Description: Creates an enum from an integer value Python specific notes: |
(2) Signature: [static] new Macro::Interpreter ptr new (string s) Description: Creates an enum from a string value Python specific notes: | |
to_i | Signature: [const] int to_i Description: Gets the integer value from the enum Python specific notes: |
to_s | Signature: [const] string to_s Description: Gets the symbolic string from an enum Python specific notes: |