public final class ContentCategory extends Enum
Modifier and Type | Field and Description |
---|---|
static ContentCategory |
Log
Log content category.
|
static ContentCategory |
Output
Output content category.
|
static ContentCategory |
Unknown
Unknown content category.
|
Modifier and Type | Method and Description |
---|---|
static ContentCategory |
fromString(String contentCategoryStr)
Converts a stringified content category into a ContentCategory object.
|
String |
toString(Locale locale)
Enterprise Manager support to acquire a localized string value.
|
int |
value()
The numeric value associated with this content category.
|
static ContentCategory |
valueOf(int value)
The content category associated with the given value.
|
static ContentCategory |
valueOf(String name) |
static ContentCategory[] |
values() |
public static final ContentCategory Unknown
public static final ContentCategory Log
public static final ContentCategory Output
public static ContentCategory[] values()
public static ContentCategory valueOf(String name)
public int value()
public static ContentCategory valueOf(int value)
value
- numeric value to convert to content category.public static ContentCategory fromString(String contentCategoryStr)
contentCategoryStr
- the string to be convertedcontentCategoryStr
or
ContentCategory.Unknown
if the conversion could not be made.