A string, one of the keywords :byte
, :short
, :int
, :long
, :float
, :double
, :char
, :boolean
, :object
and :string
, an FLI type specifier, or t
.
A non-negative integer.
Non-negative integers.
The function make-java-array
creates a Java array object array.
type specifies the type of elements in array. To make an array of any Java class, type needs to be a string with the full name of the class. To make an array of primitive type, type should be the corresponding keyword (:byte
, :short
, :int
, :long
, :float
, :double
, :char
or :boolean
). type can also be :object
or t
meaning java.lang.Object
, and :string
meaning java.lang.String
, and the FLI types matching the primitive types.
The dimension(s) of the array are specified by first-dim and the dims list, which must all be non-negative integer(s).
LispWorks User Guide and Reference Manual - 20 Sep 2017