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.



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

#attributesObject (readonly)

Returns the value of attribute attributes.



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

def attributes
  @attributes
end

#baseObject (readonly)

Returns the value of attribute base.



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

def base
  @base
end

#enumerationObject (readonly)

Returns the value of attribute enumeration.



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

def enumeration
  @enumeration
end

#fixedObject (readonly)

Returns the value of attribute fixed.



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

def fixed
  @fixed
end

#fractiondigitsObject

Returns the value of attribute fractiondigits.



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

def fractiondigits
  @fractiondigits
end

#lengthObject

Returns the value of attribute length.



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

def length
  @length
end

#maxexclusiveObject

Returns the value of attribute maxexclusive.



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

def maxexclusive
  @maxexclusive
end

#maxinclusiveObject

Returns the value of attribute maxinclusive.



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

def maxinclusive
  @maxinclusive
end

#maxlengthObject

Returns the value of attribute maxlength.



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

def maxlength
  @maxlength
end

#minexclusiveObject

Returns the value of attribute minexclusive.



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

def minexclusive
  @minexclusive
end

#mininclusiveObject

Returns the value of attribute mininclusive.



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

def mininclusive
  @mininclusive
end

#minlengthObject

Returns the value of attribute minlength.



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

def minlength
  @minlength
end

#patternObject

Returns the value of attribute pattern.



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

def pattern
  @pattern
end

#totaldigitsObject

Returns the value of attribute totaldigits.



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

def totaldigits
  @totaldigits
end

#whitespaceObject

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

Returns:

  • (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
    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)


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