Class: WSDL::XMLSchema::SimpleRestriction

Inherits:
Info show all
Defined in:
lib/wsdl/xmlSchema/simpleRestriction.rb

Instance Attribute Summary collapse

Attributes inherited from Info

#id, #parent, #root

Instance Method Summary collapse

Methods inherited from Info

#inspect, #parse_epilogue

Constructor Details

#initializeSimpleRestriction

Returns a new instance of SimpleRestriction.



35
36
37
38
39
40
41
42
43
44
45
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 35

def initialize
  super
  @base = nil
  @enumeration = []   # NamedElements?
  @length = nil
  @maxlength = nil
  @minlength = nil
  @pattern = nil
  @fixed = {}
  @attributes = XSD::NamedElements.new
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



33
34
35
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 33

def attributes
  @attributes
end

#baseObject (readonly)

Returns the value of attribute base.



19
20
21
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 19

def base
  @base
end

#enumerationObject (readonly)

Returns the value of attribute enumeration.



24
25
26
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 24

def enumeration
  @enumeration
end

#fixedObject (readonly)

Returns the value of attribute fixed.



32
33
34
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 32

def fixed
  @fixed
end

#fractiondigitsObject

Returns the value of attribute fractiondigits.



31
32
33
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 31

def fractiondigits
  @fractiondigits
end

#lengthObject

Returns the value of attribute length.



20
21
22
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 20

def length
  @length
end

#maxexclusiveObject

Returns the value of attribute maxexclusive.



27
28
29
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 27

def maxexclusive
  @maxexclusive
end

#maxinclusiveObject

Returns the value of attribute maxinclusive.



26
27
28
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 26

def maxinclusive
  @maxinclusive
end

#maxlengthObject

Returns the value of attribute maxlength.



22
23
24
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 22

def maxlength
  @maxlength
end

#minexclusiveObject

Returns the value of attribute minexclusive.



28
29
30
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 28

def minexclusive
  @minexclusive
end

#mininclusiveObject

Returns the value of attribute mininclusive.



29
30
31
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 29

def mininclusive
  @mininclusive
end

#minlengthObject

Returns the value of attribute minlength.



21
22
23
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 21

def minlength
  @minlength
end

#patternObject

Returns the value of attribute pattern.



23
24
25
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 23

def pattern
  @pattern
end

#totaldigitsObject

Returns the value of attribute totaldigits.



30
31
32
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 30

def totaldigits
  @totaldigits
end

#whitespaceObject

Returns the value of attribute whitespace.



25
26
27
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 25

def whitespace
  @whitespace
end

Instance Method Details

#enumeration?Boolean

Returns:

  • (Boolean)


56
57
58
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 56

def enumeration?
  !@enumeration.empty?
end

#parse_attr(attr, value) ⇒ Object



101
102
103
104
105
106
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 101

def parse_attr(attr, value)
  case attr
  when BaseAttrName
    @base = value
  end
end

#parse_element(element) ⇒ Object



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
99
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 60

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
    MaxExclusive.new
  when MinExclusiveName
    MinExclusive.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

Returns:

  • (Boolean)


47
48
49
50
51
52
53
54
# File 'lib/wsdl/xmlSchema/simpleRestriction.rb', line 47

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