Uses of Class
java.util.Properties
| Package | Description |
|---|---|
| java.lang | |
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| java.sql | |
| java.util | |
| javax.xml.transform | |
| org.apache.commons.logging.impl |
Concrete implementations of commons-logging wrapper APIs.
|
| org.apache.harmony.security.provider.cert | |
| org.apache.harmony.security.provider.crypto | |
| org.apache.xalan.templates |
Implements the
Templates interface,
and defines a set of classes that represent an XSLT stylesheet. |
| org.apache.xalan.transformer |
In charge of run-time transformations and the production of result trees.
|
| org.apache.xml.serializer |
Processes SAX events into streams.
|
| org.apache.xpath.functions |
Implements XPath functions -- each function is derived from Function,
FunctionOneArg, Function2Args, etc, with number-of-arguments checking being
applied mainly at compile time -- this package only implements XPath functions,
XSLT functions are found in the "templates" package.
|
| org.bouncycastle.jce.provider | |
| org.conscrypt | |
| SQLite | |
| SQLite.JDBC2z |
-
Uses of Properties in java.lang
Methods in java.lang that return Properties Modifier and Type Method Description static PropertiesSystem. getProperties()Returns the system properties.Methods in java.lang with parameters of type Properties Modifier and Type Method Description static voidSystem. setProperties(Properties p)Sets all system properties. -
Uses of Properties in java.security
Subclasses of Properties in java.security Modifier and Type Class Description classAuthProviderLegacy security code; do not use.classProviderProvideris the abstract superclass for all security providers in the Java security infrastructure. -
Uses of Properties in java.sql
Methods in java.sql that return Properties Modifier and Type Method Description PropertiesConnection. getClientInfo()Returns aPropertiesobject containing all client info properties.Methods in java.sql with parameters of type Properties Modifier and Type Method Description ConnectionDriver. connect(String url, Properties info)Attempts to make a database connection to a data source specified by a supplied URL.static ConnectionDriverManager. getConnection(String url, Properties info)Attempts to establish a connection to the given database URL.DriverPropertyInfo[]Driver. getPropertyInfo(String url, Properties info)Gets information about possible properties for this driver.voidConnection. setClientInfo(Properties properties)Replaces all client info properties with the name/value pairs fromproperties. -
Uses of Properties in java.util
Fields in java.util declared as Properties Modifier and Type Field Description protected PropertiesProperties. defaultsThe default values for keys not found in thisPropertiesinstance.Constructors in java.util with parameters of type Properties Constructor Description Properties(Properties properties)Constructs a newPropertiesobject using the specified defaultProperties. -
Uses of Properties in javax.xml.transform
Methods in javax.xml.transform that return Properties Modifier and Type Method Description PropertiesTemplates. getOutputProperties()Get the properties corresponding to the effective xsl:output element.abstract PropertiesTransformer. getOutputProperties()Get a copy of the output properties for the transformation.Methods in javax.xml.transform with parameters of type Properties Modifier and Type Method Description abstract voidTransformer. setOutputProperties(Properties oformat)Set the output properties for the transformation. -
Uses of Properties in org.apache.commons.logging.impl
Fields in org.apache.commons.logging.impl declared as Properties Modifier and Type Field Description protected static PropertiesSimpleLog. simpleLogPropsProperties loaded from simplelog.properties -
Uses of Properties in org.apache.harmony.security.provider.cert
Subclasses of Properties in org.apache.harmony.security.provider.cert Modifier and Type Class Description classDRLCertFactory -
Uses of Properties in org.apache.harmony.security.provider.crypto
Subclasses of Properties in org.apache.harmony.security.provider.crypto Modifier and Type Class Description classCryptoProviderImplementation of Provider for SecureRandom, MessageDigest and Signature using a Secure Hash Algorithm, SHA-1; see SECURE HASH STANDARD, FIPS PUB 180-1 (http://www.itl.nist.gov/fipspubs/fip180-1.htm)
The implementation supports "SHA1PRNG", "SHA-1" and "SHA1withDSA" algorithms described in JavaTM Cryptography Architecture, API Specification & Reference -
Uses of Properties in org.apache.xalan.templates
Methods in org.apache.xalan.templates that return Properties Modifier and Type Method Description static PropertiesOutputProperties. getDefaultMethodProperties(String method)Deprecated.Use org.apache.xml.serializer.OuputPropertiesFactory.PropertiesStylesheetRoot. getDefaultOutputProps()PropertiesStylesheetRoot. getOutputProperties()Get the static properties for xsl:output.PropertiesOutputProperties. getProperties()Get the Properties object that this class wraps.Methods in org.apache.xalan.templates with parameters of type Properties Modifier and Type Method Description voidOutputProperties. copyFrom(Properties src)Copy the keys and values from the source to this object.voidOutputProperties. copyFrom(Properties src, boolean shouldResetDefaults)Copy the keys and values from the source to this object.static VectorOutputProperties. getQNameProperties(String key, Properties props)Searches for the list of qname properties with the specified key in the property list.static QNameOutputProperties. getQNameProperty(String key, Properties props)Searches for the qname property with the specified key in the property list.Constructors in org.apache.xalan.templates with parameters of type Properties Constructor Description OutputProperties(Properties defaults)Creates an empty OutputProperties with the specified defaults. -
Uses of Properties in org.apache.xalan.transformer
Methods in org.apache.xalan.transformer that return Properties Modifier and Type Method Description PropertiesTransformerIdentityImpl. getOutputProperties()Get a copy of the output properties for the transformation.PropertiesTransformerImpl. getOutputProperties()Get a copy of the output properties for the transformation.Methods in org.apache.xalan.transformer with parameters of type Properties Modifier and Type Method Description voidTransformerIdentityImpl. setOutputProperties(Properties oformat)Set the output properties for the transformation.voidTransformerImpl. setOutputProperties(Properties oformat)Set the output properties for the transformation.voidTransformerImpl. setParameters(Properties params)Set a bag of parameters for the transformation.static SerializerSerializerSwitcher. switchSerializerIfHTML(String ns, String localName, Properties props, Serializer oldSerializer)Switch to HTML serializer if element is HTML -
Uses of Properties in org.apache.xml.serializer
Methods in org.apache.xml.serializer that return Properties Modifier and Type Method Description static PropertiesOutputPropertiesFactory. getDefaultMethodProperties(String method)Creates an empty OutputProperties with the property key/value defaults specified by a property file.PropertiesSerializer. getOutputFormat()Returns the output format properties for this serializer.PropertiesToStream. getOutputFormat()Returns the output format for this serializer.PropertiesToTextSAXHandler. getOutputFormat()Deprecated.PropertiesToUnknownStream. getOutputFormat()PropertiesToXMLSAXHandler. getOutputFormat()Methods in org.apache.xml.serializer with parameters of type Properties Modifier and Type Method Description static booleanOutputPropertyUtils. getBooleanProperty(String key, Properties props)Searches for the boolean property with the specified key in the property list.static intOutputPropertyUtils. getIntProperty(String key, Properties props)Searches for the int property with the specified key in the property list.static SerializerSerializerFactory. getSerializer(Properties format)Returns a serializer for the specified output method.voidSerializer. setOutputFormat(Properties format)Specifies an output format for this serializer.voidToHTMLStream. setOutputFormat(Properties format)Specifies an output format for this serializer.voidToStream. setOutputFormat(Properties format)Specifies an output format for this serializer.voidToTextSAXHandler. setOutputFormat(Properties format)Deprecated.voidToUnknownStream. setOutputFormat(Properties format)Set the properties of the handlervoidToXMLSAXHandler. setOutputFormat(Properties format) -
Uses of Properties in org.apache.xpath.functions
Methods in org.apache.xpath.functions with parameters of type Properties Modifier and Type Method Description voidFuncSystemProperty. loadPropertyFile(String file, Properties target)Retrieve a propery bundle from a specified file -
Uses of Properties in org.bouncycastle.jce.provider
Subclasses of Properties in org.bouncycastle.jce.provider Modifier and Type Class Description classBouncyCastleProviderTo add the provider at runtime use: -
Uses of Properties in org.conscrypt
Subclasses of Properties in org.conscrypt Modifier and Type Class Description classJSSEProviderJSSE Provider implementation.classOpenSSLProviderProvider that goes through OpenSSL for operations. -
Uses of Properties in SQLite
Methods in SQLite with parameters of type Properties Modifier and Type Method Description ConnectionJDBCDriver. connect(String url, Properties info)DriverPropertyInfo[]JDBCDriver. getPropertyInfo(String url, Properties info) -
Uses of Properties in SQLite.JDBC2z
Methods in SQLite.JDBC2z that return Properties Modifier and Type Method Description PropertiesJDBCConnection. getClientInfo()Methods in SQLite.JDBC2z with parameters of type Properties Modifier and Type Method Description voidJDBCConnection. setClientInfo(Properties prop)