class Scim::Kit::V2::Mutability

Represents the valid Mutability values

Constants

IMMUTABLE
READ_ONLY
READ_WRITE
VALID
WRITE_ONLY

Public Class Methods

find(value) click to toggle source
# File lib/scim/kit/v2/mutability.rb, line 25
def self.find(value)
  VALID[value.to_sym] || (raise ArgumentError, :mutability)
end