Package org.forester.go
Class GoNameSpace
- java.lang.Object
-
- org.forester.go.GoNameSpace
-
public class GoNameSpace extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GoNameSpace.GoNamespaceType
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
BIOLOGICAL_PROCESS_STR
static java.lang.String
CELLULAR_COMPONENT_STR
static java.lang.String
MOLECULAR_FUNCTION_STR
static java.lang.String
UNASSIGNED_STR
-
Constructor Summary
Constructors Constructor Description GoNameSpace(java.lang.String type)
GoNameSpace(GoNameSpace.GoNamespaceType type)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GoNameSpace
createBiologicalProcess()
static GoNameSpace
createCellularComponent()
static GoNameSpace
createMolecularFunction()
static GoNameSpace
createUnassigned()
boolean
equals(java.lang.Object o)
GoNameSpace.GoNamespaceType
getType()
boolean
isBiologicalProcess()
boolean
isCellularComponent()
boolean
isMolecularFunction()
boolean
isUnassigned()
java.lang.String
toShortString()
java.lang.String
toString()
-
-
-
Field Detail
-
MOLECULAR_FUNCTION_STR
public static final java.lang.String MOLECULAR_FUNCTION_STR
- See Also:
- Constant Field Values
-
BIOLOGICAL_PROCESS_STR
public static final java.lang.String BIOLOGICAL_PROCESS_STR
- See Also:
- Constant Field Values
-
CELLULAR_COMPONENT_STR
public static final java.lang.String CELLULAR_COMPONENT_STR
- See Also:
- Constant Field Values
-
UNASSIGNED_STR
public static final java.lang.String UNASSIGNED_STR
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GoNameSpace
public GoNameSpace(GoNameSpace.GoNamespaceType type)
-
GoNameSpace
public GoNameSpace(java.lang.String type)
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
getType
public GoNameSpace.GoNamespaceType getType()
-
isBiologicalProcess
public boolean isBiologicalProcess()
-
isCellularComponent
public boolean isCellularComponent()
-
isMolecularFunction
public boolean isMolecularFunction()
-
isUnassigned
public boolean isUnassigned()
-
toShortString
public java.lang.String toShortString()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
createBiologicalProcess
public static GoNameSpace createBiologicalProcess()
-
createCellularComponent
public static GoNameSpace createCellularComponent()
-
createMolecularFunction
public static GoNameSpace createMolecularFunction()
-
createUnassigned
public static GoNameSpace createUnassigned()
-
-