class |
AnyToCommandline |
Generates a commandline string from any object.
|
class |
AnyToString |
Turns any object into a String, using its 'toString()' method.
|
class |
ArrayToYamlString |
Converts the object array into a YAML string.
|
class |
BaseDateTimeMsecToString |
Turns a BaseDateTimeMsec format string into a String, evaluted using user-supplied start and end dates (ignored if future INF dates).
Example: 2015-12-01 07:13:12.034 +3 MINUTE
(<date>|NOW|-INF|+INF|START|END) [expr (MILLISECOND|SECOND|MINUTE|HOUR|DAY|BUSINESSDAY|WEEK|MONTH|YEAR)]*
expr ::= ( expr )
| - expr
| + expr
| expr + expr
| expr - expr
| expr * expr
| expr / expr
| expr % expr
| expr ^ expr
| abs ( expr )
| sqrt ( expr )
| log ( expr )
| exp ( expr )
| rint ( expr )
| floor ( expr )
| pow[er] ( expr , expr )
| ceil ( expr )
| NUMBER
|
class |
BaseDateTimeToString |
Turns a BaseDateTime format string into a String, evaluted using user-supplied start and end dates (ignored if future INF dates).
Example: 2015-12-01 07:13:12 +3 MINUTE
(<date>|NOW|-INF|+INF|START|END) [expr (SECOND|MINUTE|HOUR|DAY|BUSINESSDAY|WEEK|MONTH|YEAR)]*
expr ::= ( expr )
| - expr
| + expr
| expr + expr
| expr - expr
| expr * expr
| expr / expr
| expr % expr
| expr ^ expr
| abs ( expr )
| sqrt ( expr )
| log ( expr )
| exp ( expr )
| rint ( expr )
| floor ( expr )
| pow[er] ( expr , expr )
| ceil ( expr )
| NUMBER
|
class |
BaseDateToString |
Turns a BaseDate format string into a String, evaluted using user-supplied start and end dates (ignored if future INF dates).
Example: 2015-12-01 +3 DAY
(<date>|NOW|-INF|+INF|START|END) [expr (DAY|BUSINESSDAY|WEEK|MONTH|YEAR)]*
expr ::= ( expr )
| - expr
| + expr
| expr + expr
| expr - expr
| expr * expr
| expr / expr
| expr % expr
| expr ^ expr
| abs ( expr )
| sqrt ( expr )
| log ( expr )
| exp ( expr )
| rint ( expr )
| floor ( expr )
| pow[er] ( expr , expr )
| ceil ( expr )
| NUMBER
|
class |
BaseTimeToString |
Turns a BaseTime format string into a String, evaluted using user-supplied start and end times (ignored if future INF times).
Example: 07:13:12 +3 MINUTE
(<date>|NOW|-INF|+INF|START|END) [expr (SECOND|MINUTE|HOUR)]*
expr ::= ( expr )
| - expr
| + expr
| expr + expr
| expr - expr
| expr * expr
| expr / expr
| expr % expr
| expr ^ expr
| abs ( expr )
| sqrt ( expr )
| log ( expr )
| exp ( expr )
| rint ( expr )
| floor ( expr )
| pow[er] ( expr , expr )
| ceil ( expr )
| NUMBER
|
class |
ByteArrayToBase64 |
Encodes a byte array as base64 string.
|
class |
ByteArrayToString |
Turns a byte array into a String.
|
class |
ByteToHex |
Turns a Byte into a hexadecimal string.
|
class |
ByteToString |
Turns a Byte into a String.
|
class |
CharArrayToString |
Turns a char array into a String.
|
class |
DateTimeTypeToString |
Turns instances of the specified date/time type into a string using the specified format.
|
class |
DOMNodeToString |
Turns a org.w3c.dom.Node DOM object into a String.
|
class |
DOMToString |
Turns a org.w3c.dom.Node or org.w3c.dom.Document DOM object into a String.
In case of org.w3c.dom.Node objects, the owner document is converted to String.
|
class |
DoubleToString |
Turns a Double into a String.
|
class |
EmailToPlainText |
Turns an Email object into a plain text string.
|
class |
FieldToString |
Turns a Field object into a String.
|
class |
FileToString |
Turns a File object into a String.
|
class |
IntToHex |
Turns an Integer into a hexadecimal string.
|
class |
IntToRoman |
Converts an integer (1-3999) into a roman numeral string (eg 'MCM').
|
class |
IntToString |
Turns an Integer into a String.
Can be optionally formatted using a byte format string.
|
class |
JsonToString |
Turns a JSON object/array into a string.
|
class |
ListToYamlString |
Converts the java.util.List object into a YAML string.
|
class |
LongToString |
Turns a Long into a String.
Can be optionally formatted using a byte format string.
|
class |
MapToYamlString |
Converts the java.util.Map object into a YAML string.
|
class |
Mat5ArrayToString |
Converts matrices into a textual representation, otherwise just outputs the dimensions.
|
class |
Mat5CharToString |
class |
NotesToString |
Turns an adams.data.Notes object into a string.
|
class |
Point2DToString |
Turns a java.awt.geom.Point2D into a string of the format 'x y'.
|
class |
PropertiesToString |
Turns a Properties object into a String.
|
class |
QuadrilateralLocationToString |
Turns a quadrilateral object into a string of the format 'A.x A.y B.x B.y C.x C.y D.x D.y'.
|
class |
RectangleToString |
Turns a rectangle into a string of the format 'x y w h' or 'x0 y0 x1 y1'.
|
class |
RemoteCommandToString |
Turns a remote command into a string.
|
class |
ReportToString |
Generates a string representation from the report using the specified report writer.
|
class |
SideBySideDiffToString |
Turns a side-by-side diff object into a string.
|
class |
TextContainerToString |
Obtains the string content of a adams.data.text.TextContainer and forwards that.
|
class |
TextRenderer |
Turns incoming objects into their textual representation, either automatic detection based on their data type or by explicitly specifying a renderer.
See also:
adams.flow.transformer.TextRenderer
|
class |
TimeToString |
Turns a number representing milli-seconds since 1970 (Java date) into a String.
For more information on formatting the date, see:
Javadoc.
|
class |
WekaDrawableToString |
Extracts the string representation of a weka.core.Drawable object, e.g., the tree representation of a decision tree or the graph of a BayesNet.
|