class FieldModel
- FieldModel
- Reference
- Object
Defined in:
miniparsers/java.crConstructors
Instance Method Summary
- #access_modifier : String
- #access_modifier=(access_modifier : String)
- #has_getter=(value : Bool)
- #has_getter? : Bool
- #has_setter=(value : Bool)
- #has_setter? : Bool
- #init_value : String
- #init_value=(init_value : String)
- #is_final=(is_final : Bool)
- #is_final? : Bool
- #is_static=(is_static : Bool)
- #is_static? : Bool
- #name : String
- #name=(name : String)
-
#to_s
Returns a nicely readable and concise string representation of this object, typically intended for users.
- #type : String
- #type=(type : String)
Constructor Detail
def self.new(access_modifier : String, is_static : Bool, is_final : Bool, type : String, name : String, init_value : String)
#
Instance Method Detail
def to_s
#
Description copied from class Object
Returns a nicely readable and concise string representation of this object, typically intended for users.
This method should usually not be overridden. It delegates to
#to_s(IO)
which can be overridden for custom implementations.
Also see #inspect
.