Partilhar via


DocumentTableCellKind Class

public final class DocumentTableCellKind
extends ExpandableStringEnum<DocumentTableCellKind>

Table cell kind.

Field Summary

Modifier and Type Field and Description
static final DocumentTableCellKind COLUMN_HEADER

Describes the content of the column.

static final DocumentTableCellKind CONTENT

Contains the main content/data.

static final DocumentTableCellKind DESCRIPTION

Describes the content in (parts of) the table.

static final DocumentTableCellKind ROW_HEADER

Describes the content of the row.

static final DocumentTableCellKind STUB_HEAD

Describes the row headers, usually located at the top left corner of a table.

Constructor Summary

Constructor Description
DocumentTableCellKind()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of DocumentTableCellKind value.

Method Summary

Modifier and Type Method and Description
static DocumentTableCellKind fromString(String name)

Creates or finds a DocumentTableCellKind from its string representation.

static Collection<DocumentTableCellKind> values()

Gets known DocumentTableCellKind values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

COLUMN_HEADER

public static final DocumentTableCellKind COLUMN_HEADER

Describes the content of the column.

CONTENT

public static final DocumentTableCellKind CONTENT

Contains the main content/data.

DESCRIPTION

public static final DocumentTableCellKind DESCRIPTION

Describes the content in (parts of) the table.

ROW_HEADER

public static final DocumentTableCellKind ROW_HEADER

Describes the content of the row.

STUB_HEAD

public static final DocumentTableCellKind STUB_HEAD

Describes the row headers, usually located at the top left corner of a table.

Constructor Details

DocumentTableCellKind

@Deprecated
public DocumentTableCellKind()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of DocumentTableCellKind value.

Method Details

fromString

public static DocumentTableCellKind fromString(String name)

Creates or finds a DocumentTableCellKind from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding DocumentTableCellKind.

values

public static Collection values()

Gets known DocumentTableCellKind values.

Returns:

known DocumentTableCellKind values.

Applies to