class Squash::Java::Type
Superclass describing both {Squash::Java::Primitive Primitive} types and {Squash::Java::Class Classes}.
Attributes
name[R]
@return [String] The type name.
Public Instance Methods
full_name()
click to toggle source
@return [String] The full type name. By default this is equal to {#name},
but can be overridden.
# File lib/squash/java/namespace.rb, line 405 def full_name() name end
inspect()
click to toggle source
@private
# File lib/squash/java/namespace.rb, line 408 def inspect() "#<#{self.class.to_s} #{full_name}>" end