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()

ファイルをテキストとして表示できるかどうかを取得します。

パブリック コンストラクタ

LogFile

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: ログファイルのサイズ(バイト単位)。

ログファイル

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