public enum JOURNALSTATUSEX extends Enum<JOURNALSTATUSEX>
| Enum Constant and Description |
|---|
STATUS_APPROVED |
STATUS_POSTED |
STATUS_REJECTED |
STATUS_SUBMITTED |
STATUS_WORKING |
| Modifier and Type | Method and Description |
|---|---|
static JOURNAL_STATUS |
enumConstant(String statusValue)
Method to return the corresponding JOURNALSTATUS constant for the value
|
static String |
enumValue(JOURNAL_STATUS status)
Method to return the value for the corresponding JOURNALSTATUS constant
|
static JOURNALSTATUSEX |
fromValue(String status) |
static JOURNAL_STATUS |
toJOURNALSTATUS(JOURNALSTATUSEX statusType)
Method to convert the JOURNALSTATUSEX constant to JOURNALSTATUS constant
|
static JOURNALSTATUSEX |
toJOURNALSTATUSEX(JOURNAL_STATUS statusType)
Method to convert the JOURNALSTATUS constant to JOURNALSTATUSEX constant
|
String |
value() |
static JOURNALSTATUSEX |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JOURNALSTATUSEX[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JOURNALSTATUSEX STATUS_WORKING
public static final JOURNALSTATUSEX STATUS_SUBMITTED
public static final JOURNALSTATUSEX STATUS_APPROVED
public static final JOURNALSTATUSEX STATUS_REJECTED
public static final JOURNALSTATUSEX STATUS_POSTED
public static JOURNALSTATUSEX[] values()
for (JOURNALSTATUSEX c : JOURNALSTATUSEX.values()) System.out.println(c);
public static JOURNALSTATUSEX 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 JOURNALSTATUSEX fromValue(String status)
public String value()
public static JOURNALSTATUSEX toJOURNALSTATUSEX(JOURNAL_STATUS statusType)
public static JOURNAL_STATUS toJOURNALSTATUS(JOURNALSTATUSEX statusType)
public static String enumValue(JOURNAL_STATUS status)
public static JOURNAL_STATUS enumConstant(String statusValue)
Copyright 2007, 2026, Oracle. All rights reserved.