Class: WSDL::XMLSchema::SimpleRestriction
- Defined in:
- lib/wsdl/xmlSchema/simpleRestriction.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#base ⇒ Object
readonly
Returns the value of attribute base.
-
#enumeration ⇒ Object
readonly
Returns the value of attribute enumeration.
-
#fixed ⇒ Object
readonly
Returns the value of attribute fixed.
-
#fractiondigits ⇒ Object
Returns the value of attribute fractiondigits.
-
#length ⇒ Object
Returns the value of attribute length.
-
#maxexlusive ⇒ Object
Returns the value of attribute maxexlusive.
-
#maxinclusive ⇒ Object
Returns the value of attribute maxinclusive.
-
#maxlength ⇒ Object
Returns the value of attribute maxlength.
-
#minexlusive ⇒ Object
Returns the value of attribute minexlusive.
-
#mininclusive ⇒ Object
Returns the value of attribute mininclusive.
-
#minlength ⇒ Object
Returns the value of attribute minlength.
-
#pattern ⇒ Object
Returns the value of attribute pattern.
-
#totaldigits ⇒ Object
Returns the value of attribute totaldigits.
-
#whitespace ⇒ Object
Returns the value of attribute whitespace.
Attributes inherited from Info
Instance Method Summary collapse
- #enumeration? ⇒ Boolean
-
#initialize ⇒ SimpleRestriction
constructor
A new instance of SimpleRestriction.
- #parse_attr(attr, value) ⇒ Object
- #parse_element(element) ⇒ Object
- #valid?(value) ⇒ Boolean
Methods inherited from Info
Constructor Details
#initialize ⇒ SimpleRestriction
Returns a new instance of SimpleRestriction.
34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 34 def initialize super @base = nil @enumeration = [] # NamedElements? @length = nil @maxlength = nil @minlength = nil @pattern = nil @fixed = {} @attributes = XSD::NamedElements.new end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
32 33 34 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 32 def attributes @attributes end |
#base ⇒ Object (readonly)
Returns the value of attribute base.
18 19 20 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 18 def base @base end |
#enumeration ⇒ Object (readonly)
Returns the value of attribute enumeration.
23 24 25 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 23 def enumeration @enumeration end |
#fixed ⇒ Object (readonly)
Returns the value of attribute fixed.
31 32 33 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 31 def fixed @fixed end |
#fractiondigits ⇒ Object
Returns the value of attribute fractiondigits.
30 31 32 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 30 def fractiondigits @fractiondigits end |
#length ⇒ Object
Returns the value of attribute length.
19 20 21 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 19 def length @length end |
#maxexlusive ⇒ Object
Returns the value of attribute maxexlusive.
26 27 28 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 26 def maxexlusive @maxexlusive end |
#maxinclusive ⇒ Object
Returns the value of attribute maxinclusive.
25 26 27 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 25 def maxinclusive @maxinclusive end |
#maxlength ⇒ Object
Returns the value of attribute maxlength.
21 22 23 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 21 def maxlength @maxlength end |
#minexlusive ⇒ Object
Returns the value of attribute minexlusive.
27 28 29 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 27 def minexlusive @minexlusive end |
#mininclusive ⇒ Object
Returns the value of attribute mininclusive.
28 29 30 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 28 def mininclusive @mininclusive end |
#minlength ⇒ Object
Returns the value of attribute minlength.
20 21 22 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 20 def minlength @minlength end |
#pattern ⇒ Object
Returns the value of attribute pattern.
22 23 24 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 22 def pattern @pattern end |
#totaldigits ⇒ Object
Returns the value of attribute totaldigits.
29 30 31 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 29 def totaldigits @totaldigits end |
#whitespace ⇒ Object
Returns the value of attribute whitespace.
24 25 26 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 24 def whitespace @whitespace end |
Instance Method Details
#enumeration? ⇒ Boolean
55 56 57 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 55 def enumeration? !@enumeration.empty? end |
#parse_attr(attr, value) ⇒ Object
100 101 102 103 104 105 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 100 def parse_attr(attr, value) case attr when BaseAttrName @base = value end end |
#parse_element(element) ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 59 def parse_element(element) case element when LengthName Length.new when MinLengthName MinLength.new when MaxLengthName MaxLength.new when PatternName Pattern.new when EnumerationName Enumeration.new when WhiteSpaceName WhiteSpace.new when MaxInclusiveName MaxInclusive.new when MaxExclusiveName MaxExlusive.new when MinExclusiveName MinExlusive.new when MinInclusiveName MinInclusive.new when TotalDigitsName TotalDigits.new when FractionDigitsName FractionDigits.new when AttributeName o = Attribute.new @attributes << o o when AttributeGroupName o = AttributeGroup.new @attributes << o o when AnyAttributeName o = AnyAttribute.new @attributes << o o end end |
#valid?(value) ⇒ Boolean
46 47 48 49 50 51 52 53 |
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 46 def valid?(value) return false unless check_restriction(value) return false unless check_length(value) return false unless check_maxlength(value) return false unless check_minlength(value) return false unless check_pattern(value) true end |