public enum LogPropertyType extends Enum<LogPropertyType>
| Enum Constant and Description |
|---|
COMMENT
comment for log item
|
PROPERTY
property extension for log item
|
STACKTRACE
stacktrace attachment for log item
|
TAG
tag extension for log item
|
THROWABLE
exception attachment for log item
|
| Modifier and Type | Method and Description |
|---|---|
static LogPropertyType |
findByName(String name) |
static LogPropertyType |
findByURI(String uri) |
static Set<LogPropertyType> |
getAll() |
static LogPropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogPropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogPropertyType PROPERTY
public static final LogPropertyType TAG
public static final LogPropertyType STACKTRACE
public static final LogPropertyType THROWABLE
public static final LogPropertyType COMMENT
public static LogPropertyType[] values()
for (LogPropertyType c : LogPropertyType.values()) System.out.println(c);
public static LogPropertyType 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 nullpublic static Set<LogPropertyType> getAll()
public static LogPropertyType findByURI(String uri)
public static LogPropertyType findByName(String name)
Copyright © 2020. All rights reserved.