VMware GemFire Java API Reference
Class ClassNameType
- java.lang.Object
-
- org.apache.geode.cache.configuration.ClassNameType
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
DeclarableType
public class ClassNameType extends java.lang.Object implements java.io.SerializableJava class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="class-name" type="{http://geode.apache.org/schema/cache}class-name-type"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringclassName
-
Constructor Summary
Constructors Constructor Description ClassNameType()ClassNameType(java.lang.String className)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetClassName()Gets the value of the className property.inthashCode()voidsetClassName(java.lang.String value)Sets the value of the className property.java.lang.StringtoString()
-
-
-
Method Detail
-
getClassName
public java.lang.String getClassName()
Gets the value of the className property. possible object isString- Returns:
- the class name.
-
setClassName
public void setClassName(java.lang.String value)
Sets the value of the className property. allowed object isString- Parameters:
value- the class name.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-