Package org.nd4j.common.tools
Class InfoLine
- java.lang.Object
-
- org.nd4j.common.tools.InfoLine
-
public class InfoLine extends Object
-
-
Field Summary
Fields Modifier and Type Field Description List<InfoValues>ivL
-
Constructor Summary
Constructors Constructor Description InfoLine()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetTitleLine(int mtLv, int title_I)Returns titles line as string appointed by title index (0..5).
Columns are separated with char '|'.
If title index is < 0 returns "?".
If title index is > 5 returns "?".StringgetValuesLine(int mtLv)Returns values line as string.
Columns are separated with char '|'.
-
-
-
Field Detail
-
ivL
public List<InfoValues> ivL
-
-
Method Detail
-
getTitleLine
public String getTitleLine(int mtLv, int title_I)
Returns titles line as string appointed by title index (0..5).
Columns are separated with char '|'.
If title index is < 0 returns "?".
If title index is > 5 returns "?".- Parameters:
mtLv- - method leveltitle_I- - title index- Returns:
- titles line as string
-
getValuesLine
public String getValuesLine(int mtLv)
Returns values line as string.
Columns are separated with char '|'.- Parameters:
mtLv- - method level- Returns:
- values line as string
-
-