Class: Vertx::FileSystemProps
- Inherits:
-
Object
- Object
- Vertx::FileSystemProps
- Defined in:
- /Users/julien/java/vertx-stack/stack-docs/target/rb/vertx/file_system_props.rb
Instance Method Summary (collapse)
-
- (FileSystemProps) initialize(j_del)
constructor
A new instance of FileSystemProps.
- - (Object) j_del
- - (Object) total_space
- - (Object) unallocated_space
- - (Object) usable_space
Constructor Details
- (FileSystemProps) initialize(j_del)
Returns a new instance of FileSystemProps
8 9 10 |
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx/file_system_props.rb', line 8 def initialize(j_del) @j_del = j_del end |
Instance Method Details
- (Object) j_del
13 14 15 |
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx/file_system_props.rb', line 13 def j_del @j_del end |
- (Object) total_space
17 18 19 20 21 22 |
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx/file_system_props.rb', line 17 def total_space if !block_given? return @j_del.java_method(:totalSpace, []).call() end raise ArgumentError, "Invalid arguments when calling total_space()" end |
- (Object) unallocated_space
24 25 26 27 28 29 |
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx/file_system_props.rb', line 24 def unallocated_space if !block_given? return @j_del.java_method(:unallocatedSpace, []).call() end raise ArgumentError, "Invalid arguments when calling unallocated_space()" end |
- (Object) usable_space
31 32 33 34 35 36 |
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx/file_system_props.rb', line 31 def usable_space if !block_given? return @j_del.java_method(:usableSpace, []).call() end raise ArgumentError, "Invalid arguments when calling usable_space()" end |