Module: Elastictastic::Thrift::Method

Defined in:
lib/elastictastic/thrift/types.rb

Constant Summary collapse

GET =
0
PUT =
1
POST =
2
DELETE =
3
HEAD =
4
OPTIONS =
5
VALUE_MAP =
{0 => "GET", 1 => "PUT", 2 => "POST", 3 => "DELETE", 4 => "HEAD", 5 => "OPTIONS"}
VALID_VALUES =
Set.new([GET, PUT, POST, DELETE, HEAD, OPTIONS]).freeze