Class IdentifierImpl
- java.lang.Object
-
- org.apache.openjpa.lib.identifier.IdentifierImpl
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Comparable<Identifier>
,Identifier
public class IdentifierImpl extends Object implements Identifier, Serializable
Base identifer implementation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
IdentifierImpl()
IdentifierImpl(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(Identifier o)
String
getName()
int
hashCode()
boolean
isNameDelimited()
int
length()
void
setName(String name)
void
setNameDelimited(boolean nameDelimited)
String
toString()
-
-
-
Constructor Detail
-
IdentifierImpl
protected IdentifierImpl()
-
IdentifierImpl
public IdentifierImpl(String name)
-
-
Method Detail
-
setName
public void setName(String name)
- Specified by:
setName
in interfaceIdentifier
-
getName
public String getName()
- Specified by:
getName
in interfaceIdentifier
-
isNameDelimited
public boolean isNameDelimited()
-
setNameDelimited
public void setNameDelimited(boolean nameDelimited)
-
length
public int length()
- Specified by:
length
in interfaceIdentifier
-
compareTo
public int compareTo(Identifier o)
- Specified by:
compareTo
in interfaceComparable<Identifier>
-
-