class Tsukuba::GC::Schedule

Constants

TYPES

Attributes

time[R]
type[R]

Public Class Methods

new(time, type) click to toggle source
# File lib/tsukuba/gc/schedule.rb, line 20
def initialize(time, type)
  @time = time.clone.freeze
  @type = type
end

Public Instance Methods

type_ja() click to toggle source
# File lib/tsukuba/gc/schedule.rb, line 25
def type_ja
  TYPES[@type]
end