Searched refs:logType (Results 1 – 1 of 1) sorted by relevance
83 TestLogType logType = TestLogType.fromDataName(dataName); in fromDataName() local84 if (logType == null) { in fromDataName()92 return new TestLog(logType, url); in fromDataName()109 TestLogType logType = TestLogType.valueOf(type.toUpperCase()); in fromXml() local110 return new TestLog(logType, url); in fromXml()117 public static TestLog of(TestLogType logType, String url) { in of() argument118 return new TestLog(logType, url); in of()121 private TestLog(TestLogType logType, String url) { in TestLog() argument122 this.mLogType = logType; in TestLog()