Type Members
-
type
ReadlineType
= Value
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
val
EditLine
: Value
-
val
GNUReadline
: Value
-
val
GetLine
: Value
-
val
JLine
: Value
-
val
Simple
: Value
-
def
Value
(i: Int, name: String): Value
-
def
Value
(name: String): Value
-
def
Value
(i: Int): Value
-
def
Value
: Value
-
def
apply
(x: Int): Value
-
def
asInstanceOf
[T0]
: T0
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
isInstanceOf
[T0]
: Boolean
-
def
maxId
: Int
-
def
ne
(arg0: AnyRef): Boolean
-
var
nextId
: Int
-
var
nextName
: Iterator[String]
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
readResolve
(): AnyRef
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
values
: ValueSet
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
-
def
withName
(s: String): Value
Inherited from Enumeration
Inherited from Serializable
Inherited from Serializable
Inherited from AnyRef
Inherited from Any
An enumeration of the various underlying readline APIs supported by this API. Note that a given API may or may not be available on a particular machine. The following implementations are currently supported:
-
GNUReadline: The GNU Readline library. Requires the JavaReadline jar (http://java-readline.sourceforge.net/) and the GNU Readline library (http://tiswww.case.edu/php/chet/readline/rltop.html). -Editline: The Editline library, originally from BSD Unix. Requires thelibjavaeditline jarand dynamic library (see http://software.clapper.org/java/javaeditline/) and the Editline library (http://www.thrysoee.dk/editline/). -Getline: The Getline library. Requires the JavaReadline jar (http://java-readline.sourceforge.net/) and the Getline library. -JLine: The JLine library. Requires the JLine jar http://jline.sourceforge.net/). -Simple: A simple, none-editing, pure Java implementation.