class Dist

Describes the probability distribution for random generation. This is a wrapper around the corresponding java object.

Attributes

java_object[R]

Public Class Methods

new(java_object) click to toggle source
# File template.rb, line 1143
def initialize(java_object)

  @java_object = java_object

end

Public Instance Methods

next_value() click to toggle source
# File template.rb, line 1147
def next_value

  @java_object.value

end