public abstract class ToolsAccessor extends Object
| Constructor and Description |
|---|
ToolsAccessor() |
| Modifier and Type | Method and Description |
|---|---|
protected static com.metaring.framework.type.DataRepresentation |
dataRepresentationFromJson(String json) |
protected static com.metaring.framework.type.DataRepresentation |
dataRepresentationfromObject(Object object) |
protected static com.metaring.framework.type.series.DigitSeries |
digitSeriesFromJson(String json) |
protected static com.metaring.framework.type.Email |
emailFromJson(String json) |
protected static com.metaring.framework.type.series.EmailSeries |
emailSeriesFromJson(String json) |
protected static com.metaring.framework.ExecutionEnvironment |
executionEnvironmentByName(String environmentString) |
protected static com.metaring.framework.ExecutionEnvironment |
executionEnvironmentDEVELOPMENT() |
protected static com.metaring.framework.ExecutionEnvironment |
executionEnvironmentPRODUCTION() |
protected static com.metaring.framework.ExecutionEnvironment |
executionEnvironmentTEST() |
protected static com.metaring.framework.SysKB |
loadSysKB(String fileName) |
protected static com.metaring.framework.util.log.LogMessageType |
logMessageTypeByName(String levelName) |
protected static com.metaring.framework.util.log.LogMessageType |
logMessageTypeByPriorityLevel(Long priority) |
protected static com.metaring.framework.util.log.LogMessageType |
logMessageTypeCONFIG() |
protected static com.metaring.framework.util.log.LogMessageType |
logMessageTypeDEBUG() |
protected static com.metaring.framework.util.log.LogMessageType |
logMessageTypeENTERING() |
protected static com.metaring.framework.util.log.LogMessageType |
logMessageTypeEXITING() |
protected static com.metaring.framework.util.log.LogMessageType |
logMessageTypeINFO() |
protected static com.metaring.framework.util.log.LogMessageType |
logMessageTypeSEVERE() |
protected static com.metaring.framework.util.log.LogMessageType |
logMessageTypeWARNING() |
protected static com.metaring.framework.type.DataRepresentation |
newDataRepresentation() |
protected static com.metaring.framework.type.series.DigitSeries |
newDigitSeries(Iterable<Long> items) |
protected static com.metaring.framework.type.series.DigitSeries |
newDigitSeries(Long... items) |
protected static com.metaring.framework.type.Email |
newEmail(String email) |
protected static com.metaring.framework.type.Email |
newEmail(String username,
String domainName,
String domainLocation) |
protected static com.metaring.framework.type.series.EmailSeries |
newEmailSeries(com.metaring.framework.type.Email... items) |
protected static com.metaring.framework.type.series.EmailSeries |
newEmailSeries(Iterable<com.metaring.framework.type.Email> items) |
protected static com.metaring.framework.util.log.Logger |
newLogger(String logName) |
protected static com.metaring.framework.util.log.Logger |
newLogger(String logName,
com.metaring.framework.util.log.LogMessageType messageType) |
protected static com.metaring.framework.util.log.Logger |
newLogger(String logName,
com.metaring.framework.util.log.LogMessageType messageType,
Long depth) |
protected static com.metaring.framework.util.log.Logger |
newLogger(String logName,
Long depth) |
protected static com.metaring.framework.type.series.RealDigitSeries |
newRealDigitSeries(Double... items) |
protected static com.metaring.framework.type.series.RealDigitSeries |
newRealDigitSeries(Iterable<Double> items) |
protected static com.metaring.framework.SysKB |
newSysKB(com.metaring.framework.type.DataRepresentation dataRepresentation) |
protected static com.metaring.framework.SysKB |
newSysKB(String systemName) |
protected static com.metaring.framework.SysKB |
newSysKB(String systemName,
Boolean test) |
protected static com.metaring.framework.SysKB |
newSysKB(String systemName,
com.metaring.framework.util.log.LogMessageType logMessageType) |
protected static com.metaring.framework.SysKB |
newSysKB(String systemName,
com.metaring.framework.util.log.LogMessageType logMessageType,
Boolean test) |
protected static com.metaring.framework.type.series.TextSeries |
newTextSeries(Iterable<String> items) |
protected static com.metaring.framework.type.series.TextSeries |
newTextSeries(String... items) |
protected static com.metaring.framework.type.series.TruthSeries |
newTruthSeries(Boolean... items) |
protected static com.metaring.framework.type.series.TruthSeries |
newTruthSeries(Iterable<Boolean> items) |
protected static com.metaring.framework.type.series.RealDigitSeries |
realDigitSeriesFromJson(String json) |
protected static com.metaring.framework.type.series.TextSeries |
textSeriesFromJson(String json) |
protected static com.metaring.framework.type.series.TruthSeries |
truthSeriesFromJson(String json) |
protected static final com.metaring.framework.type.Email newEmail(String username, String domainName, String domainLocation)
protected static final com.metaring.framework.type.Email newEmail(String email)
protected static final com.metaring.framework.type.Email emailFromJson(String json)
protected static final com.metaring.framework.type.series.EmailSeries newEmailSeries(com.metaring.framework.type.Email... items)
protected static final com.metaring.framework.type.series.EmailSeries newEmailSeries(Iterable<com.metaring.framework.type.Email> items)
protected static final com.metaring.framework.type.series.EmailSeries emailSeriesFromJson(String json)
protected static final com.metaring.framework.type.series.DigitSeries newDigitSeries(Long... items)
protected static final com.metaring.framework.type.series.DigitSeries newDigitSeries(Iterable<Long> items)
protected static final com.metaring.framework.type.series.DigitSeries digitSeriesFromJson(String json)
protected static final com.metaring.framework.type.series.RealDigitSeries newRealDigitSeries(Double... items)
protected static final com.metaring.framework.type.series.RealDigitSeries newRealDigitSeries(Iterable<Double> items)
protected static final com.metaring.framework.type.series.RealDigitSeries realDigitSeriesFromJson(String json)
protected static final com.metaring.framework.type.series.TruthSeries newTruthSeries(Boolean... items)
protected static final com.metaring.framework.type.series.TruthSeries newTruthSeries(Iterable<Boolean> items)
protected static final com.metaring.framework.type.series.TruthSeries truthSeriesFromJson(String json)
protected static final com.metaring.framework.type.series.TextSeries newTextSeries(String... items)
protected static final com.metaring.framework.type.series.TextSeries newTextSeries(Iterable<String> items)
protected static final com.metaring.framework.type.series.TextSeries textSeriesFromJson(String json)
protected static final com.metaring.framework.util.log.LogMessageType logMessageTypeENTERING()
protected static final com.metaring.framework.util.log.LogMessageType logMessageTypeEXITING()
protected static final com.metaring.framework.util.log.LogMessageType logMessageTypeINFO()
protected static final com.metaring.framework.util.log.LogMessageType logMessageTypeDEBUG()
protected static final com.metaring.framework.util.log.LogMessageType logMessageTypeCONFIG()
protected static final com.metaring.framework.util.log.LogMessageType logMessageTypeWARNING()
protected static final com.metaring.framework.util.log.LogMessageType logMessageTypeSEVERE()
protected static final com.metaring.framework.util.log.LogMessageType logMessageTypeByName(String levelName)
protected static final com.metaring.framework.util.log.LogMessageType logMessageTypeByPriorityLevel(Long priority)
protected static final com.metaring.framework.util.log.Logger newLogger(String logName)
protected static final com.metaring.framework.util.log.Logger newLogger(String logName, Long depth)
protected static final com.metaring.framework.util.log.Logger newLogger(String logName, com.metaring.framework.util.log.LogMessageType messageType)
protected static final com.metaring.framework.util.log.Logger newLogger(String logName, com.metaring.framework.util.log.LogMessageType messageType, Long depth)
protected static final com.metaring.framework.type.DataRepresentation dataRepresentationfromObject(Object object)
protected static final com.metaring.framework.type.DataRepresentation newDataRepresentation()
protected static final com.metaring.framework.type.DataRepresentation dataRepresentationFromJson(String json)
protected static final com.metaring.framework.ExecutionEnvironment executionEnvironmentTEST()
protected static final com.metaring.framework.ExecutionEnvironment executionEnvironmentDEVELOPMENT()
protected static final com.metaring.framework.ExecutionEnvironment executionEnvironmentPRODUCTION()
protected static final com.metaring.framework.ExecutionEnvironment executionEnvironmentByName(String environmentString)
protected static final com.metaring.framework.SysKB loadSysKB(String fileName)
protected static final com.metaring.framework.SysKB newSysKB(String systemName)
protected static final com.metaring.framework.SysKB newSysKB(String systemName, com.metaring.framework.util.log.LogMessageType logMessageType)
protected static final com.metaring.framework.SysKB newSysKB(String systemName, Boolean test)
protected static final com.metaring.framework.SysKB newSysKB(String systemName, com.metaring.framework.util.log.LogMessageType logMessageType, Boolean test)
protected static final com.metaring.framework.SysKB newSysKB(com.metaring.framework.type.DataRepresentation dataRepresentation)
Copyright © 2019. All rights reserved.