LogFile

public class LogFile
extends Object

java.lang.Object
   ↳ com.android.tradefed.result.LogFile


저장된 로그 파일의 메타데이터를 저장할 클래스입니다.

요약

공개 생성자

LogFile(String path, String url, boolean isCompressed, LogDataType type, long size)

파일 경로, URL, LogDataType 메타데이터로 LogFile를 구성합니다.

LogFile(String path, String url, LogDataType type)

파일 경로, URL, LogDataType 메타데이터로 LogFile를 구성합니다.

공개 메서드

String getPath()

절대 경로를 가져옵니다.

long getSize()

로깅된 파일의 크기를 가져옵니다.

LogDataType getType()

로깅된 파일의 LogDataType를 가져옵니다.

String getUrl()

저장된 파일에 액세스할 수 있는 URL을 가져옵니다.

boolean isCompressed()

파일이 압축되었는지 여부를 가져옵니다.

boolean isText()

파일을 텍스트로 표시할 수 있는지 여부를 가져옵니다.

공개 생성자

로그 파일

public LogFile (String path, 
                String url, 
                boolean isCompressed, 
                LogDataType type, 
                long size)

파일 경로, URL, LogDataType 메타데이터로 LogFile를 구성합니다. 경우에 따라 파일을 수동으로 압축하지만 추적 목적으로 원래 유형을 유지하려는 경우 압축 상태를 명시적으로 설정할 수 있는 LogFile#LogFile(String, String, LogDataType)의 변형입니다.

매개변수
path String: 저장된 파일의 절대 경로입니다.

url String: 저장된 파일에 액세스할 수 있는 URL입니다.

isCompressed boolean: 파일이 압축되었는지 여부입니다.

type LogDataType: 로깅된 파일의 LogDataType입니다.

size long: 로깅된 파일의 크기(바이트)

LogFile

public LogFile (String path, 
                String url, 
                LogDataType type)

파일 경로, URL, LogDataType 메타데이터로 LogFile를 구성합니다.

매개변수
path String: 저장된 파일의 절대 경로입니다.

url String: 저장된 파일에 액세스할 수 있는 URL입니다.

type LogDataType: 로깅된 파일의 LogDataType입니다.

공개 메서드

getPath

public String getPath ()

절대 경로를 가져옵니다.

반환 값
String

getSize

public long getSize ()

로깅된 파일의 크기를 가져옵니다.

반환 값
long

getType

public LogDataType getType ()

로깅된 파일의 LogDataType를 가져옵니다.

반환 값
LogDataType

getUrl

public String getUrl ()

저장된 파일에 액세스할 수 있는 URL을 가져옵니다.

반환 값
String

isCompressed

public boolean isCompressed ()

파일이 압축되었는지 여부를 가져옵니다.

반환 값
boolean

isText

public boolean isText ()

파일을 텍스트로 표시할 수 있는지 여부를 가져옵니다.

반환 값
boolean