Gemfire JavaDocs
Class RegionConfig.Entry
- java.lang.Object
-
- org.apache.geode.cache.configuration.RegionConfig.Entry
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- RegionConfig
public static class RegionConfig.Entry extends java.lang.Object implements java.io.Serializable
Java 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="key"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="string" type="{http://geode.apache.org/schema/cache}string-type"/> <element name="declarable" type="{http://geode.apache.org/schema/cache}declarable-type"/> </choice> </restriction> </complexContent> </complexType> </element> <element name="value"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="string" type="{http://geode.apache.org/schema/cache}string-type"/> <element name="declarable" type="{http://geode.apache.org/schema/cache}declarable-type"/> </choice> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ObjectType
key
protected ObjectType
value
-
Constructor Summary
Constructors Constructor Description Entry()
Entry(java.lang.String key, java.lang.String value)
Entry(ObjectType key, ObjectType value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectType
getKey()
Gets the value of the key property.ObjectType
getValue()
Gets the value of the value property.void
setKey(ObjectType value)
Sets the value of the key property.void
setValue(ObjectType value)
Sets the value of the value property.
-
-
-
Field Detail
-
key
protected ObjectType key
-
value
protected ObjectType value
-
-
Constructor Detail
-
Entry
public Entry()
-
Entry
public Entry(java.lang.String key, java.lang.String value)
-
Entry
public Entry(ObjectType key, ObjectType value)
-
-
Method Detail
-
getKey
public ObjectType getKey()
Gets the value of the key property. possible object isObjectType
- Returns:
- the value of the key property
-
setKey
public void setKey(ObjectType value)
Sets the value of the key property. allowed object isObjectType
- Parameters:
value
- the value of the key property
-
getValue
public ObjectType getValue()
Gets the value of the value property. possible object isObjectType
- Returns:
- the value of the value property
-
setValue
public void setValue(ObjectType value)
Sets the value of the value property. allowed object isObjectType
- Parameters:
value
- the value of the value property
-
-