| java.lang.Object org.apache.xml.serializer.OutputPropertyUtils
OutputPropertyUtils | final public class OutputPropertyUtils (Code) | | This class contains some static methods that act as helpers when parsing a
Java Property object.
This class is not a public API.
It is only public because it is used outside of this package.
See Also: java.util.Properties |
Method Summary | |
public static boolean | getBooleanProperty(String key, Properties props) Searches for the boolean property with the specified key in the property list.
If the key is not found in this property list, the default property list,
and its defaults, recursively, are then checked. | public static int | getIntProperty(String key, Properties props) Searches for the int property with the specified key in the property list.
If the key is not found in this property list, the default property list,
and its defaults, recursively, are then checked. |
getBooleanProperty | public static boolean getBooleanProperty(String key, Properties props)(Code) | | Searches for the boolean property with the specified key in the property list.
If the key is not found in this property list, the default property list,
and its defaults, recursively, are then checked. The method returns
false if the property is not found, or if the value is other
than "yes".
Parameters: key - the property key. Parameters: props - the list of properties that will be searched. the value in this property list as a boolean value, or falseif null or not "yes". |
getIntProperty | public static int getIntProperty(String key, Properties props)(Code) | | Searches for the int property with the specified key in the property list.
If the key is not found in this property list, the default property list,
and its defaults, recursively, are then checked. The method returns
false if the property is not found, or if the value is other
than "yes".
Parameters: key - the property key. Parameters: props - the list of properties that will be searched. the value in this property list as a int value, or 0if null or not a number. |
|
|