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 1093
def initialize(java_object)
  @java_object = java_object
end

Public Instance Methods

next_value() click to toggle source
# File template.rb, line 1097
def next_value
  @java_object.value
end