Interface | Description |
---|---|
Ruby.Enumerable<E> |
Ruby.Enumerable includes all methods refer to the Enumerable module
of Ruby. |
Ruby.Enumerator<E> |
Ruby.Enumerator includes all methods refer to the Enumerator class
of Ruby. |
Ruby.LazyEnumerator<E> |
Ruby.LazyEnumerator includes all methods refer to the
LazyEnumerator class of Ruby. |
RubyContract.Enumerable<E,N extends RubyContract.Enumerator<?,?,?>,Z extends RubyContract.Enumerable<?,?,?>> |
RubyContract.Enumerable defines all methods of a Ruby Enumerable should have. |
RubyContract.Enumerator<E,N extends RubyContract.Enumerator<?,?,?>,Z extends RubyContract.Enumerable<?,?,?>> |
RubyContract.Enumerator defines all methods of a Ruby Enumerator should have. |
Class | Description |
---|---|
Ruby |
Ruby contains the general interfaces of RubyCollect4J
implementations. |
RubyArray<E> |
RubyArray implements all methods refer to the Array class of Ruby
language. |
RubyCollections |
RubyCollections provides numerous useful static methods to make the
RubyCollect4J easy to use. |
RubyContract |
RubyContract provides few interfaces to define what are the methods a
RubyContract.Enumerable and an RubyContract.Enumerator should have. |
RubyDate |
RubyDate simply extends Java Date and adds few useful methods which
are inspired by Ruby on Rails. |
RubyDir |
RubyDir implements parts of the methods refer to the Dir class of
Ruby. |
RubyEnumerable<E> |
RubyEnumerable is an extension for any Iterable class. |
RubyEnumerator<E> |
RubyEnumerator implements most of the methods refer to the Enumerator
class of Ruby language. |
RubyFile |
RubyFile implements parts of the methods refer to the File class of
Ruby. |
RubyHash<K,V> |
RubyHash implements all methods refer to the Hash class of Ruby
language. |
RubyIO |
RubyIO implements part of the methods refer to the IO class of Ruby. |
RubyKernel |
RubyKernel mimics the useful Ruby p method by wrapping the Java
System.out.println method. |
RubyLazyEnumerator<E> |
RubyLazyEnumerator implements most of the methods refer to the
Enumerator::Lazy class of Ruby language. |
RubyObject |
RubyObject provides the general methods of Ruby objects. |
RubyRange<E> |
RubyRange is inspired by the Range class of Ruby. |
RubySet<E> |
RubySet implements all methods refer to the Set class of Ruby
language. |
RubyString |
RubyString implements all methods refer to the String class of Ruby
language. |
Enum | Description |
---|---|
RubyDate.DateField |
RubyDate.DateField is designed for RubyDate.change(Map) to use. |
RubyIO.Mode |
This Mode enum contains all open modes of
RubyIO .r : Read. r+ : Read and Write. w : Write. w+ : Write and Read. a : Append. a+ : Append and Read. |