class JavaClass::ClassFile::Constants::ConstantMethod

Public Class Methods

new(pool, data, start) click to toggle source
# File lib/javaclass/classfile/constants/double_reference.rb, line 62
def initialize(pool, data, start)
  super(pool, data, start)
end

Public Instance Methods

class_name()
Alias for: first_value
const_method?() click to toggle source
# File lib/javaclass/classfile/constants/double_reference.rb, line 73
def const_method?
  true
end
first_value() click to toggle source
Calls superclass method
# File lib/javaclass/classfile/constants/double_reference.rb, line 66
def first_value
  JavaVMName.new(super) # this is a classname
end
Also aliased as: class_name