class SnapTrade::Timeframe
def self.all_vars
def self.all_vars @all_vars ||= [ALL, N1_Y, N6_M, N3_M, N1_M].freeze end
def self.build_from_hash(value)
-
(String)- The enum value
Parameters:
-
The(String) -- enum value in the form of the string
def self.build_from_hash(value) new.build_from_hash(value) end
def build_from_hash(value)
-
(String)- The enum value
Parameters:
-
The(String) -- enum value in the form of the string
def build_from_hash(value) return value if Timeframe.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #Timeframe" end