class Protocol::HTTP::Methods

def self.valid?(name)

def self.valid?(name)
	const_defined?(name)
rescue NameError
	# Ruby will raise an exception if the name is not valid for a constant.
	return false
end