Package org.apache.solr.common.cloud
Class ZkNodeProps
- java.lang.Object
-
- org.apache.solr.common.cloud.ZkNodeProps
-
- All Implemented Interfaces:
MapSerializable
,MapWriter
,NavigableObject
,org.noggit.JSONWriter.Writable
- Direct Known Subclasses:
DocCollection
,Replica
,RoutingRule
,Slice
public class ZkNodeProps extends Object implements MapWriter
ZkNodeProps contains generic immutable properties.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.solr.common.MapWriter
MapWriter.EntryWriter
-
-
Constructor Summary
Constructors Constructor Description ZkNodeProps(String... keyVals)
Constructor that populates the from array of Strings in form key1, value1, key2, value2, ..., keyN, valueNZkNodeProps(Map<String,Object> propMap)
Construct ZKNodeProps from map.ZkNodeProps(MapWriter mw)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
containsKey(String key)
Check if property key exists.boolean
equals(Object that)
static ZkNodeProps
fromKeyVals(Object... keyVals)
Deprecated.Object
get(String key)
boolean
getBool(String key, boolean b)
Integer
getInt(String key, Integer def)
Get a string property value.Map<String,Object>
getProperties()
Get all properties as map.String
getStr(String key)
Get a string property value.String
getStr(String key, String def)
Get a string property value.int
hashCode()
Set<String>
keySet()
Get property keys.static ZkNodeProps
load(byte[] bytes)
Create Replica from json string that is typically stored in zookeeper.ZkNodeProps
plus(String key, Object val)
ZkNodeProps
plus(Map<String,Object> newVals)
Map<String,Object>
shallowCopy()
Returns a shallow writable copy of the propertiesString
toString()
void
writeMap(MapWriter.EntryWriter ew)
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.solr.common.NavigableObject
_forEachEntry, _forEachEntry, _forEachEntry, _get, _get, _getStr, _getStr, _size
-
-
-
-
Method Detail
-
plus
public ZkNodeProps plus(String key, Object val)
-
plus
public ZkNodeProps plus(Map<String,Object> newVals)
-
fromKeyVals
@Deprecated(since="9.0.0") public static ZkNodeProps fromKeyVals(Object... keyVals)
Deprecated.
-
shallowCopy
public Map<String,Object> shallowCopy()
Returns a shallow writable copy of the properties
-
load
public static ZkNodeProps load(byte[] bytes)
Create Replica from json string that is typically stored in zookeeper.
-
containsKey
public boolean containsKey(String key)
Check if property key exists.
-
getBool
public boolean getBool(String key, boolean b)
-
writeMap
public void writeMap(MapWriter.EntryWriter ew) throws IOException
- Specified by:
writeMap
in interfaceMapWriter
- Throws:
IOException
-
-