Class: Xberg::RedactionPattern
- Inherits:
-
Object
- Object
- Xberg::RedactionPattern
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#case_sensitive ⇒ Boolean
readonly
Returns the value of attribute case_sensitive.
-
#label ⇒ String
readonly
Returns the value of attribute label.
-
#pattern ⇒ String
readonly
Returns the value of attribute pattern.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ RedactionPattern
constructor
A new instance of RedactionPattern.
Constructor Details
#initialize ⇒ RedactionPattern
Returns a new instance of RedactionPattern.
478 |
# File 'sig/types.rbs', line 478
def initialize: (label: String, pattern: String, case_sensitive: bool) -> void
|
Instance Attribute Details
#case_sensitive ⇒ Boolean (readonly)
Returns the value of attribute case_sensitive.
476 477 478 |
# File 'sig/types.rbs', line 476 def case_sensitive @case_sensitive end |
#label ⇒ String (readonly)
Returns the value of attribute label.
474 475 476 |
# File 'sig/types.rbs', line 474 def label @label end |
#pattern ⇒ String (readonly)
Returns the value of attribute pattern.
475 476 477 |
# File 'sig/types.rbs', line 475 def pattern @pattern end |
Class Method Details
.labeled ⇒ RedactionPattern
479 |
# File 'sig/types.rbs', line 479
def self.labeled: (String label, String pattern) -> RedactionPattern
|