|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.cc.framework.ui.JoinMode
Defines the modes how columns in a list can be joined
Field Summary | |
private static JoinMode[] |
ALL
Collection with all kinds of join modes |
static JoinMode |
CONCATENATE
join two adjacent elements without any spacing |
private java.lang.String |
mode
The internal mode |
static JoinMode |
NONE
do not join elements |
static JoinMode |
SEPARATOR
join two adjacent elements by adding a separator |
private static long |
serialVersionUID
Serial Version UID |
Constructor Summary | |
private |
JoinMode(java.lang.String mode)
Constructor for ColumnJoinMode |
Method Summary | |
boolean |
equals(java.lang.Object obj)
Compares this type to the specified object. |
int |
hashCode()
|
static JoinMode |
parse(java.lang.String code)
Creates for the argument an object of type ColumnJoinMode |
java.lang.String |
toString()
Returns the join mode |
static JoinMode |
valueOf(boolean b)
Maps a boolean value to a JoinMode |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
private static final long serialVersionUID
public static final JoinMode NONE
public static final JoinMode SEPARATOR
public static final JoinMode CONCATENATE
private java.lang.String mode
private static final JoinMode[] ALL
Constructor Detail |
private JoinMode(java.lang.String mode)
mode
- The join mode identifier to initialize the ObjectMethod Detail |
public java.lang.String toString()
public boolean equals(java.lang.Object obj)
obj
- The object to compare this ColumnJoinMode
object against.
true
if the internal types are equal;
false
otherwise.public int hashCode()
Object.hashCode()
public static JoinMode parse(java.lang.String code)
code
- String to parse
public static JoinMode valueOf(boolean b)
b
- the value to map
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |