|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EnumColumns>
fr.paris.lutece.plugins.helpdesk.web.EnumColumns
public enum EnumColumns
Specify the list of mandatory columns in CSV file
Enum Constant Summary | |
---|---|
ANSWER
|
|
ORDER_ID
|
|
QUESTION
|
|
SUBJECT_ID
|
Method Summary | |
---|---|
static EnumColumns |
getByName(String strName)
Get the EnumColumns by name |
String |
getName()
Get the Column name |
static EnumColumns |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EnumColumns[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EnumColumns SUBJECT_ID
public static final EnumColumns QUESTION
public static final EnumColumns ANSWER
public static final EnumColumns ORDER_ID
Method Detail |
---|
public static EnumColumns[] values()
for (EnumColumns c : EnumColumns.values()) System.out.println(c);
public static EnumColumns valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String getName()
public static EnumColumns getByName(String strName)
EnumColumns
by name
strName
- The column name
EnumColumns
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |