org.apache.shiro.config
Class Ini.Section

java.lang.Object
  extended by org.apache.shiro.config.Ini.Section
All Implemented Interfaces:
Map<String,String>
Enclosing class:
Ini

public static class Ini.Section
extends Object
implements Map<String,String>

An Ini.Section is String-key-to-String-value Map, identifiable by a name unique within an Ini instance.


Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Method Summary
 void clear()
           
 boolean containsKey(Object key)
           
 boolean containsValue(Object value)
           
 Set<Map.Entry<String,String>> entrySet()
           
 boolean equals(Object obj)
           
 String get(Object key)
           
 String getName()
           
 int hashCode()
           
protected static boolean isContinued(String line)
           
 boolean isEmpty()
           
 Set<String> keySet()
           
 String put(String key, String value)
           
 void putAll(Map<? extends String,? extends String> m)
           
 String remove(Object key)
           
 int size()
           
protected static String[] splitKeyValue(String keyValueLine)
           
 String toString()
           
 Collection<String> values()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Method Detail

isContinued

protected static boolean isContinued(String line)

splitKeyValue

protected static String[] splitKeyValue(String keyValueLine)

getName

public String getName()

clear

public void clear()
Specified by:
clear in interface Map<String,String>

containsKey

public boolean containsKey(Object key)
Specified by:
containsKey in interface Map<String,String>

containsValue

public boolean containsValue(Object value)
Specified by:
containsValue in interface Map<String,String>

entrySet

public Set<Map.Entry<String,String>> entrySet()
Specified by:
entrySet in interface Map<String,String>

get

public String get(Object key)
Specified by:
get in interface Map<String,String>

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface Map<String,String>

keySet

public Set<String> keySet()
Specified by:
keySet in interface Map<String,String>

put

public String put(String key,
                  String value)
Specified by:
put in interface Map<String,String>

putAll

public void putAll(Map<? extends String,? extends String> m)
Specified by:
putAll in interface Map<String,String>

remove

public String remove(Object key)
Specified by:
remove in interface Map<String,String>

size

public int size()
Specified by:
size in interface Map<String,String>

values

public Collection<String> values()
Specified by:
values in interface Map<String,String>

toString

public String toString()
Overrides:
toString in class Object

equals

public boolean equals(Object obj)
Specified by:
equals in interface Map<String,String>
Overrides:
equals in class Object

hashCode

public int hashCode()
Specified by:
hashCode in interface Map<String,String>
Overrides:
hashCode in class Object


Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.