Class: LanguageServer::Protocol::Interface::DeleteFileOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::DeleteFileOptions
- Defined in:
- lib/language_server/protocol/interface/delete_file_options.rb
Overview
Delete file options
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#ignore_if_not_exists ⇒ boolean
Ignore the operation if the file doesn’t exist.
-
#initialize(recursive: nil, ignore_if_not_exists: nil) ⇒ DeleteFileOptions
constructor
A new instance of DeleteFileOptions.
-
#recursive ⇒ boolean
Delete the content recursively if a folder is denoted.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(recursive: nil, ignore_if_not_exists: nil) ⇒ DeleteFileOptions
Returns a new instance of DeleteFileOptions.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/delete_file_options.rb', line 8 def initialize(recursive: nil, ignore_if_not_exists: nil) @attributes = {} @attributes[:recursive] = recursive if recursive @attributes[:ignoreIfNotExists] = ignore_if_not_exists if ignore_if_not_exists @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
33 34 35 |
# File 'lib/language_server/protocol/interface/delete_file_options.rb', line 33 def attributes @attributes end |
Instance Method Details
#ignore_if_not_exists ⇒ boolean
Ignore the operation if the file doesn’t exist.
29 30 31 |
# File 'lib/language_server/protocol/interface/delete_file_options.rb', line 29 def ignore_if_not_exists attributes.fetch(:ignoreIfNotExists) end |
#recursive ⇒ boolean
Delete the content recursively if a folder is denoted.
21 22 23 |
# File 'lib/language_server/protocol/interface/delete_file_options.rb', line 21 def recursive attributes.fetch(:recursive) end |
#to_hash ⇒ Object
35 36 37 |
# File 'lib/language_server/protocol/interface/delete_file_options.rb', line 35 def to_hash attributes end |
#to_json(*args) ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/delete_file_options.rb', line 39 def to_json(*args) to_hash.to_json(*args) end |