public enum LineContentType extends Enum<LineContentType>
Enum Constant and Description |
---|
DATE_AND_TIME
Date & Time
|
TEXT
Text
|
VIEWER_EMAIL
Viewer email
|
VIEWER_IP_ADDRESS
Viewer IP address
|
VIEWER_NAME
Viewer name
|
Modifier and Type | Method and Description |
---|---|
static LineContentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineContentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineContentType TEXT
public static final LineContentType VIEWER_EMAIL
public static final LineContentType VIEWER_NAME
public static final LineContentType VIEWER_IP_ADDRESS
public static final LineContentType DATE_AND_TIME
public static LineContentType[] values()
for (LineContentType c : LineContentType.values()) System.out.println(c);
public static LineContentType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.