Package com.gurock.smartinspect
Class ViewerId
- java.lang.Object
-
- com.gurock.smartinspect.Enum
-
- com.gurock.smartinspect.ViewerId
-
public final class ViewerId extends Enum
Specifies the viewer for displaying the title or data of a Log Entry in the Console. There are many viewers available for displaying the data of a Log Entry in different ways. For example, there are viewers that can display lists, tables, binary dumps of data or even websites. Every viewer in the Console has a corresponding so-called viewer context in this library which can be used to send custom logging information. To get started, please see the documentation of the Session.logCustomContext method and ViewerContext class. This class is fully threadsafe.
-
-
Field Summary
Fields Modifier and Type Field Description static ViewerIdBinaryInstructs the Console to display the data of a Log Entry as a binary dump using a read-only hex editor.static ViewerIdBitmapInstructs the Console to display the data of a Log Entry as bitmap image.static ViewerIdDataInstructs the Console to display the data of a Log Entry in a read-only text field.static ViewerIdHtmlSourceInstructs the Console to display the data of a Log Entry as HTML source with syntax highlighting.static ViewerIdIconInstructs the Console to display the data of a Log Entry as Windows icon.static ViewerIdIniSourceInstructs the Console to display the data of a Log Entry as INI source with syntax highlighting.static ViewerIdInspectorInstructs the Console to display the data of a Log Entry using an object inspector.static ViewerIdJavaScriptSourceInstructs the Console to display the data of a Log Entry as JavaScript source with syntax highlighting.static ViewerIdJpegInstructs the Console to display the data of a Log Entry as a JPEG image.static ViewerIdListInstructs the Console to display the data of a Log Entry as a list.static ViewerIdMetafileInstructs the Console to display the data of a Log Entry as Windows Metafile image.static ViewerIdNoneInstructs the Console to use no viewer at all.static ViewerIdPerlSourceInstructs the Console to display the data of a Log Entry as Perl source with syntax highlighting.static ViewerIdPythonSourceInstructs the Console to display the data of a Log Entry as Python source with syntax highlighting.static ViewerIdSqlSourceInstructs the Console to display the data of a Log Entry as SQL source with syntax highlighting.static ViewerIdTableInstructs the Console to display the data of a Log Entry as a table.static ViewerIdTitleInstructs the Console to display the title of a Log Entry in a read-only text field.static ViewerIdValueListInstructs the Console to display the data of a Log Entry as a key/value list.static ViewerIdVbScriptSourceInstructs the Console to display the data of a Log Entry as VBScript source with syntax highlighting.static ViewerIdWebInstructs the Console to display the data of a Log Entry as a website.static ViewerIdXmlSourceInstructs the Console to display the data of a Log Entry as XML source with syntax highlighting.
-
-
-
Field Detail
-
None
public static final ViewerId None
Instructs the Console to use no viewer at all.
-
Title
public static final ViewerId Title
Instructs the Console to display the title of a Log Entry in a read-only text field.
-
Data
public static final ViewerId Data
Instructs the Console to display the data of a Log Entry in a read-only text field.
-
List
public static final ViewerId List
Instructs the Console to display the data of a Log Entry as a list.
-
ValueList
public static final ViewerId ValueList
Instructs the Console to display the data of a Log Entry as a key/value list.
-
Inspector
public static final ViewerId Inspector
Instructs the Console to display the data of a Log Entry using an object inspector.
-
Table
public static final ViewerId Table
Instructs the Console to display the data of a Log Entry as a table.
-
Web
public static final ViewerId Web
Instructs the Console to display the data of a Log Entry as a website.
-
Binary
public static final ViewerId Binary
Instructs the Console to display the data of a Log Entry as a binary dump using a read-only hex editor.
-
HtmlSource
public static final ViewerId HtmlSource
Instructs the Console to display the data of a Log Entry as HTML source with syntax highlighting.
-
JavaScriptSource
public static final ViewerId JavaScriptSource
Instructs the Console to display the data of a Log Entry as JavaScript source with syntax highlighting.
-
VbScriptSource
public static final ViewerId VbScriptSource
Instructs the Console to display the data of a Log Entry as VBScript source with syntax highlighting.
-
PerlSource
public static final ViewerId PerlSource
Instructs the Console to display the data of a Log Entry as Perl source with syntax highlighting.
-
SqlSource
public static final ViewerId SqlSource
Instructs the Console to display the data of a Log Entry as SQL source with syntax highlighting.
-
IniSource
public static final ViewerId IniSource
Instructs the Console to display the data of a Log Entry as INI source with syntax highlighting.
-
PythonSource
public static final ViewerId PythonSource
Instructs the Console to display the data of a Log Entry as Python source with syntax highlighting.
-
XmlSource
public static final ViewerId XmlSource
Instructs the Console to display the data of a Log Entry as XML source with syntax highlighting.
-
Bitmap
public static final ViewerId Bitmap
Instructs the Console to display the data of a Log Entry as bitmap image.
-
Jpeg
public static final ViewerId Jpeg
Instructs the Console to display the data of a Log Entry as a JPEG image.
-
Icon
public static final ViewerId Icon
Instructs the Console to display the data of a Log Entry as Windows icon.
-
Metafile
public static final ViewerId Metafile
Instructs the Console to display the data of a Log Entry as Windows Metafile image.
-
-