Class: XcodeMove::HeaderVisibility
- Inherits:
-
Object
- Object
- XcodeMove::HeaderVisibility
- Includes:
- Comparable
- Defined in:
- lib/xcmv/header_visibility.rb
Constant Summary collapse
- PRIVATE =
HeaderVisibility.new(1)
- PROJECT =
HeaderVisibility.new(2)
- PUBLIC =
HeaderVisibility.new(3)
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
17 18 19 |
# File 'lib/xcmv/header_visibility.rb', line 17 def value @value end |
Class Method Details
Instance Method Details
#<=>(other) ⇒ Object
51 52 53 |
# File 'lib/xcmv/header_visibility.rb', line 51 def <=>(other) value <=> other.value end |