Skip navigation links
A B C D E F G H I J K L M N O P R S T U V W X Y Z 

P

Package - Class in java.lang
Package represent a Java package.
Package() - Constructor for class java.lang.Package
 
PackedMap<K,V> - Class in ej.basictool.map
This class implements the AbstractPackedMap class, using object-equality when comparing keys.
PackedMap() - Constructor for class ej.basictool.map.PackedMap
Constructs an empty map.
PackedMap(PackedMap<K, V>) - Constructor for class ej.basictool.map.PackedMap
Constructs a map with the same mappings as the specified map.
parseBoolean(String) - Static method in class java.lang.Boolean
Parses the string argument as a boolean.
parseByte(String) - Static method in class java.lang.Byte
Parses the string argument as a signed decimal byte.
parseByte(String, int) - Static method in class java.lang.Byte
Parses the string argument as a signed byte in the radix specified by the second argument.
parseDouble(String) - Static method in class java.lang.Double
Returns a new double initialized to the value represented by the specified String, as performed by the valueOf method of class Double.
parseFloat(String) - Static method in class java.lang.Float
Returns a new float initialized to the value represented by the specified String, as performed by the valueOf method of class Float.
parseInt(String) - Static method in class java.lang.Integer
Parses the string argument as a signed decimal integer.
parseInt(String, int) - Static method in class java.lang.Integer
Parses the string argument as a signed integer in the radix specified by the second argument.
parseLong(String) - Static method in class java.lang.Long
Parses the string argument as a signed decimal long.
parseLong(String, int) - Static method in class java.lang.Long
Parses the string argument as a signed long in the radix specified by the second argument.
parseShort(String) - Static method in class java.lang.Short
Parses the string argument as a signed decimal short.
parseShort(String, int) - Static method in class java.lang.Short
Parses the string argument as a signed short in the radix specified by the second argument.
pathSeparator - Static variable in class java.io.File
The system-dependent path-separator character, represented as a string for convenience.
pathSeparatorChar - Static variable in class java.io.File
The system-dependent path-separator character.
PDPSession - Class in ej.ecom.mobile
This class represents a PDP session.
PDPSession(String, String, String) - Constructor for class ej.ecom.mobile.PDPSession
Constructs a PDP session.
PDPSessionException - Exception in ej.ecom.mobile
This exception is thrown by PDPSession to indicate that an I/O error occurred during a PDP session.
PDPSessionException() - Constructor for exception ej.ecom.mobile.PDPSessionException
Constructs an PDPSessionException with null as its error detail message.
PDPSessionException(String) - Constructor for exception ej.ecom.mobile.PDPSessionException
Constructs an PDPSessionException with the specified detail message.
peek() - Method in class java.util.Stack
Looks at the object at the top of this stack without removing it from the stack.
Permission - Class in java.security
 
Permission(String) - Constructor for class java.security.Permission
Constructs a permission with the specified name.
PI - Static variable in class java.lang.Math
The double value that is closer than any other to pi, the ratio of the circumference of a circle to its diameter.
PKCS8EncodedKeySpec - Class in java.security.spec
 
PKCS8EncodedKeySpec(byte[]) - Constructor for class java.security.spec.PKCS8EncodedKeySpec
Creates a new PKCS8EncodedKeySpec with the given encoded key.
platformTimeMillis() - Static method in class ej.bon.Util
Gets an arbitrary time in milliseconds.
platformTimeNanos() - Static method in class ej.bon.Util
Gets an arbitrary time in nanoseconds.
PM - Static variable in class java.util.Calendar
Value of the Calendar.AM_PM field indicating the period of the day from noon to just before midnight.
poll() - Method in class ej.bon.ReferenceQueue
Queries the queue and returns and removes the first element of the queue.
poll() - Method in class java.lang.ref.ReferenceQueue
Polls this queue to see if a reference object is available.
pop() - Method in class java.util.Stack
Removes the object at the top of this stack and returns that object as the value of this function.
portValueChanged(int) - Method in interface com.cinterion.io.InPortListener
Callback method for changes at the input ports of the general purpose IO driver (GPIO).
POSITIVE_INFINITY - Static variable in class java.lang.Double
A constant holding the positive infinity of type double.
POSITIVE_INFINITY - Static variable in class java.lang.Float
A constant holding the positive infinity of type float.
pow(double, double) - Static method in class java.lang.Math
Returns the value of the first argument raised to the power of the second argument.
previous() - Method in interface java.util.ListIterator
Returns the previous element in the list and moves the cursor position backwards.
previousIndex() - Method in interface java.util.ListIterator
Returns the index of the element that would be returned by a subsequent call to ListIterator.previous().
Principal - Interface in java.security
This interface represents the abstract notion of a principal, which can be used to represent any entity, such as an individual, a corporation, and a login id.
print(boolean) - Method in class java.io.PrintStream
Prints a boolean value.
print(char) - Method in class java.io.PrintStream
Prints a character.
print(char[]) - Method in class java.io.PrintStream
Prints an array of characters.
print(double) - Method in class java.io.PrintStream
Prints a double-precision floating-point number.
print(float) - Method in class java.io.PrintStream
Prints a floating-point number.
print(int) - Method in class java.io.PrintStream
Prints an integer.
print(long) - Method in class java.io.PrintStream
Prints a long integer.
print(Object) - Method in class java.io.PrintStream
Prints an object.
print(String) - Method in class java.io.PrintStream
Prints a string.
println() - Method in class java.io.PrintStream
Terminates the current line by writing the line separator string.
println(boolean) - Method in class java.io.PrintStream
Prints a boolean and then terminate the line.
println(char) - Method in class java.io.PrintStream
Prints a character and then terminate the line.
println(char[]) - Method in class java.io.PrintStream
Prints an array of characters and then terminate the line.
println(double) - Method in class java.io.PrintStream
Prints a double and then terminate the line.
println(float) - Method in class java.io.PrintStream
Prints a float and then terminate the line.
println(int) - Method in class java.io.PrintStream
Prints an integer and then terminate the line.
println(long) - Method in class java.io.PrintStream
Prints a long and then terminate the line.
println(Object) - Method in class java.io.PrintStream
Prints an Object and then terminate the line.
println(String) - Method in class java.io.PrintStream
Prints a String and then terminate the line.
printStackTrace() - Method in class java.lang.Throwable
Prints this throwable and its backtrace to the standard error stream.
printStackTrace(PrintStream) - Method in class java.lang.Throwable
Prints this throwable and its backtrace to the specified print stream.
PrintStream - Class in java.io
A PrintStream adds functionality to another output stream, namely the ability to print representations of various data values conveniently.
PrintStream(OutputStream) - Constructor for class java.io.PrintStream
Creates a new print stream.
PrintStream(OutputStream, boolean) - Constructor for class java.io.PrintStream
Creates a new print stream.
PrintStream(OutputStream, boolean, String) - Constructor for class java.io.PrintStream
Creates a new print stream.
PRIVATE_KEY - Static variable in class javax.crypto.Cipher
Constant used to indicate the to-be-unwrapped key is a "private key".
PrivateKey - Interface in java.security
 
Properties - Class in java.util
The Properties class represents a persistent set of properties.
Properties() - Constructor for class java.util.Properties
Creates an empty property list with no default values.
PropertyFactory - Class in ej.property
Gets a property loader that is able to retrieve properties.
PropertyFactory() - Constructor for class ej.property.PropertyFactory
 
PropertyLoader - Interface in ej.property
A property loader is a map of properties.
PropertyPermission - Class in ej.property
PropertyPermission(String, String, String) - Constructor for class ej.property.PropertyPermission
Creates a permission for the given property.
PropertyPermission - Class in java.util
 
PropertyPermission(String, String) - Constructor for class java.util.PropertyPermission
 
PropertyRegistry - Interface in ej.property
A property registry is a property loader that allows to add or remove properties dynamically.
PROTOCOL_DTLS_1_0 - Static variable in class com.cinterion.ssl.SslConfig
DTLS version 1.0.
PROTOCOL_DTLS_1_2 - Static variable in class com.cinterion.ssl.SslConfig
DTLS version 1.2.
PROTOCOL_TLS_1_0 - Static variable in class com.cinterion.ssl.SslConfig
TLS version 1.0.
PROTOCOL_TLS_1_1 - Static variable in class com.cinterion.ssl.SslConfig
TLS version 1.1.
PROTOCOL_TLS_1_2 - Static variable in class com.cinterion.ssl.SslConfig
TLS version 1.2.
ProviderException - Exception in java.security
A runtime exception for Provider exceptions (such as misconfiguration errors or unrecoverable internal errors), which may be subclassed by Providers to throw specialized, provider-specific runtime errors.
ProviderException() - Constructor for exception java.security.ProviderException
Constructs a ProviderException with no detail message.
ProviderException(String) - Constructor for exception java.security.ProviderException
Constructs a ProviderException with the specified detail message.
ProviderException(String, Throwable) - Constructor for exception java.security.ProviderException
Creates a ProviderException with the specified detail message and cause.
ProviderException(Throwable) - Constructor for exception java.security.ProviderException
Creates a ProviderException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
Proxy<T> - Class in ej.kf
The superclass of proxy classes.
Proxy() - Constructor for class ej.kf.Proxy
The default constructor.
PUBLIC_KEY - Static variable in class javax.crypto.Cipher
Constant used to indicate the to-be-unwrapped key is a "public key".
PublicKey - Interface in java.security
 
publish(String, byte[], int, boolean) - Method in class com.cinterion.mqtt.MqttClient
Publishes a message to a particular topic.
publishGetMsgId(String, byte[], int, boolean) - Method in class com.cinterion.mqtt.MqttClient
Publishes a message to a particular topic.
purge() - Method in class java.util.Timer
Deprecated.
Removes all cancelled tasks from this timer's task queue.
push(E) - Method in class java.util.Stack
Pushes an item onto the top of this stack.
put(K, V) - Method in class ej.basictool.map.AbstractPackedMap
Associates the specified value with the specified key in this map.
put(K, V) - Method in class ej.basictool.map.AbstractWeakPackedMap
 
put(String, Object) - Static method in class ej.bon.Immutables
Maps the given ID to the given object in the immutable objects pool.
put(K, V) - Method in class java.util.AbstractMap
Associates the specified value with the specified key in this map (optional operation).
put(K, V) - Method in class java.util.Dictionary
Maps the specified key to the specified value in this dictionary.
put(K, V) - Method in class java.util.HashMap
Associates the specified value with the specified key in this map.
put(K, V) - Method in class java.util.Hashtable
Maps the specified key to the specified value in this hashtable.
put(K, V) - Method in interface java.util.Map
Associates the specified value with the specified key in this map (optional operation).
put(K, V) - Method in class java.util.WeakHashMap
Associates the specified value with the specified key in this map.
put(String, Object) - Method in class org.json.me.JSONObject
Put a key/value pair in the JSONObject.
putAll(Hashtable) - Static method in class ej.bon.Immutables
Maps all the mappings in the given table in the immutable objects pool.
putAll(Map<? extends K, ? extends V>) - Method in class java.util.AbstractMap
Copies all of the mappings from the specified map to this map (optional operation).
putAll(Map<? extends K, ? extends V>) - Method in class java.util.HashMap
Copies all of the mappings from the specified map to this map.
putAll(Map<? extends K, ? extends V>) - Method in class java.util.Hashtable
Copies all of the mappings from the specified map to this hashtable.
putAll(Map<? extends K, ? extends V>) - Method in interface java.util.Map
Copies all of the mappings from the specified map to this map (optional operation).
putAll(Map<? extends K, ? extends V>) - Method in class java.util.WeakHashMap
Copies all of the mappings from the specified map to this map.
putService(Class<T>, T) - Method in class ej.service.loader.SimpleServiceLoader
Put a service in the services map in a synchronized context.
A B C D E F G H I J K L M N O P R S T U V W X Y Z 
Skip navigation links