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

A

addObject(NSObject) - Method in class com.dd.plist.NSSet
Adds an object to the set.
allKeys() - Method in class com.dd.plist.NSDictionary
Gets a list of all keys used in this NSDictionary.
allObjects() - Method in class com.dd.plist.NSSet
Returns all objects contained in the set.
anyObject() - Method in class com.dd.plist.NSSet
Returns one of the objects in the set, or null if the set contains no objects.
append(NSString) - Method in class com.dd.plist.NSString
Appends a string to this string.
append(String) - Method in class com.dd.plist.NSString
Appends a string to this string.
ARRAY_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
ARRAY_END_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
ARRAY_ITEM_DELIMITER_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
ASCIIPropertyListParser - Class in com.dd.plist
Parser for ASCII property lists.
ASCIIPropertyListParser() - Constructor for class com.dd.plist.ASCIIPropertyListParser
Only allow subclasses to change instantiation.

B

B64InputStream(InputStream) - Constructor for class com.dd.plist.Base64.B64InputStream
Constructs a Base64.B64InputStream in DECODE mode.
B64InputStream(InputStream, int) - Constructor for class com.dd.plist.Base64.B64InputStream
Constructs a Base64.B64InputStream in either ENCODE or DECODE mode.
B64OutputStream(OutputStream) - Constructor for class com.dd.plist.Base64.B64OutputStream
Constructs a Base64.B64OutputStream in ENCODE mode.
B64OutputStream(OutputStream, int) - Constructor for class com.dd.plist.Base64.B64OutputStream
Constructs a Base64.B64OutputStream in either ENCODE or DECODE mode.
Base64 - Class in com.dd.plist
Encodes and decodes to and from Base64 notation.
Base64.B64InputStream - Class in com.dd.plist
A Base64.B64InputStream will read data from another java.io.InputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.B64OutputStream - Class in com.dd.plist
A Base64.B64OutputStream will write data to another java.io.OutputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
BinaryPropertyListParser - Class in com.dd.plist
Parses property lists that are in Apple's binary format.
BinaryPropertyListParser() - Constructor for class com.dd.plist.BinaryPropertyListParser
Protected constructor so that instantiation is fully controlled by the static parse methods.
BinaryPropertyListWriter - Class in com.dd.plist
A BinaryPropertyListWriter is a helper class for writing out binary property list files.
BOOLEAN - Static variable in class com.dd.plist.NSNumber
Indicates that the number's value is boolean.
boolValue() - Method in class com.dd.plist.NSNumber
The number's boolean value.
bytes() - Method in class com.dd.plist.NSData
The bytes contained in this NSData object.

C

clear() - Method in class com.dd.plist.NSDictionary
Removes all key-value pairs from this dictionary.
close() - Method in class com.dd.plist.Base64.B64OutputStream
Flushes and closes (I think, in the superclass) the stream.
com.dd.plist - package com.dd.plist
 
COMMENT_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
compareTo(Object) - Method in class com.dd.plist.NSNumber
 
compareTo(Object) - Method in class com.dd.plist.NSString
 
containsKey(Object) - Method in class com.dd.plist.NSDictionary
 
containsKey(String) - Method in class com.dd.plist.NSDictionary
Checks whether a given key is contained in this dictionary.
containsObject(Object) - Method in class com.dd.plist.NSArray
Checks whether an object is present in the array or whether it is equal to any of the objects in the array.
containsObject(NSObject) - Method in class com.dd.plist.NSSet
Finds out whether a given object is contained in the set.
containsValue(Object) - Method in class com.dd.plist.NSDictionary
 
containsValue(NSObject) - Method in class com.dd.plist.NSDictionary
Checks whether a given value is contained in this dictionary.
containsValue(String) - Method in class com.dd.plist.NSDictionary
Checks whether a given value is contained in this dictionary.
containsValue(long) - Method in class com.dd.plist.NSDictionary
Checks whether a given value is contained in this dictionary.
containsValue(double) - Method in class com.dd.plist.NSDictionary
Checks whether a given value is contained in this dictionary.
containsValue(boolean) - Method in class com.dd.plist.NSDictionary
Checks whether a given value is contained in this dictionary.
containsValue(Date) - Method in class com.dd.plist.NSDictionary
Checks whether a given value is contained in this dictionary.
containsValue(byte[]) - Method in class com.dd.plist.NSDictionary
Checks whether a given value is contained in this dictionary.
convertToASCII(File, File) - Static method in class com.dd.plist.PropertyListParser
Converts a given property list file into ASCII format.
convertToBinary(File, File) - Static method in class com.dd.plist.PropertyListParser
Converts a given property list file into the OS X and iOS binary format.
convertToGnuStepASCII(File, File) - Static method in class com.dd.plist.PropertyListParser
Converts a given property list file into ASCII format.
convertToXml(File, File) - Static method in class com.dd.plist.PropertyListParser
Converts a given property list file into the OS X and iOS XML format.
copyOfRange(byte[], int, int) - Static method in class com.dd.plist.BinaryPropertyListParser
Copies a part of a byte array into a new array.
count() - Method in class com.dd.plist.NSArray
Returns the size of the array.
count() - Method in class com.dd.plist.NSDictionary
Counts the number of contained key-value pairs.
count() - Method in class com.dd.plist.NSSet
Gets the number of elements in the set.

D

DATA_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATA_END_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATA_GSBOOL_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATA_GSBOOL_FALSE_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATA_GSBOOL_TRUE_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATA_GSDATE_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATA_GSINT_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATA_GSOBJECT_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATA_GSREAL_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATE_APPLE_DATE_TIME_DELIMITER - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATE_APPLE_END_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATE_DATE_FIELD_DELIMITER - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATE_GS_DATE_TIME_DELIMITER - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DATE_TIME_FIELD_DELIMITER - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DECODE - Static variable in class com.dd.plist.Base64
Specify decoding in first bit.
decode(byte[]) - Static method in class com.dd.plist.Base64
Low-level access to decoding ASCII characters in the form of a byte array.
decode(byte[], int, int, int) - Static method in class com.dd.plist.Base64
Low-level access to decoding ASCII characters in the form of a byte array.
decode(String) - Static method in class com.dd.plist.Base64
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
decode(String, int) - Static method in class com.dd.plist.Base64
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
decodeFileToFile(String, String) - Static method in class com.dd.plist.Base64
Reads infile and decodes it to outfile.
decodeFromFile(String) - Static method in class com.dd.plist.Base64
Convenience method for reading a base64-encoded file and decoding it.
decodeToFile(String, String) - Static method in class com.dd.plist.Base64
Convenience method for decoding data to a file.
decodeToObject(String) - Static method in class com.dd.plist.Base64
Attempts to decode Base64 data and deserialize a Java Object within.
decodeToObject(String, int, ClassLoader) - Static method in class com.dd.plist.Base64
Attempts to decode Base64 data and deserialize a Java Object within.
DICTIONARY_ASSIGN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DICTIONARY_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DICTIONARY_END_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DICTIONARY_ITEM_DELIMITER_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
DO_BREAK_LINES - Static variable in class com.dd.plist.Base64
Do break lines when encoding.
DONT_GUNZIP - Static variable in class com.dd.plist.Base64
Specify that gzipped data should not be automatically gunzipped.
doubleValue() - Method in class com.dd.plist.NSNumber
The number's double value.

E

ENCODE - Static variable in class com.dd.plist.Base64
Specify encoding in first bit.
encode(ByteBuffer, ByteBuffer) - Static method in class com.dd.plist.Base64
Performs Base64 encoding on the raw ByteBuffer, writing it to the encoded ByteBuffer.
encode(ByteBuffer, CharBuffer) - Static method in class com.dd.plist.Base64
Performs Base64 encoding on the raw ByteBuffer, writing it to the encoded CharBuffer.
encodeBytes(byte[]) - Static method in class com.dd.plist.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int) - Static method in class com.dd.plist.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int) - Static method in class com.dd.plist.Base64
Encodes a byte array into Base64 notation.
encodeBytes(byte[], int, int, int) - Static method in class com.dd.plist.Base64
Encodes a byte array into Base64 notation.
encodeBytesToBytes(byte[]) - Static method in class com.dd.plist.Base64
Similar to Base64.encodeBytes(byte[]) but returns a byte array instead of instantiating a String.
encodeBytesToBytes(byte[], int, int, int) - Static method in class com.dd.plist.Base64
Similar to Base64.encodeBytes(byte[], int, int, int) but returns a byte array instead of instantiating a String.
encodeFileToFile(String, String) - Static method in class com.dd.plist.Base64
Reads infile and encodes it to outfile.
encodeFromFile(String) - Static method in class com.dd.plist.Base64
Convenience method for reading a binary file and base64-encoding it.
encodeObject(Serializable) - Static method in class com.dd.plist.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeObject(Serializable, int) - Static method in class com.dd.plist.Base64
Serializes an object and returns the Base64-encoded version of that serialized object.
encodeToFile(byte[], String) - Static method in class com.dd.plist.Base64
Convenience method for encoding data to a file.
entrySet() - Method in class com.dd.plist.NSDictionary
 
equals(Object) - Method in class com.dd.plist.NSArray
 
equals(Object) - Method in class com.dd.plist.NSData
 
equals(Object) - Method in class com.dd.plist.NSDate
 
equals(Object) - Method in class com.dd.plist.NSDictionary
 
equals(Object) - Method in class com.dd.plist.NSNumber
Checks whether the other object is a NSNumber of the same value.
equals(Object) - Method in class com.dd.plist.NSSet
 
equals(Object) - Method in class com.dd.plist.NSString
 

F

floatValue() - Method in class com.dd.plist.NSNumber
The number's float value.
flushBase64() - Method in class com.dd.plist.Base64.B64OutputStream
Method added by PHIL.

G

get(Object) - Method in class com.dd.plist.NSDictionary
 
getArray() - Method in class com.dd.plist.NSArray
Returns the array of NSObjects represented by this NSArray.
getBase64EncodedData() - Method in class com.dd.plist.NSData
Gets the Base64 encoded data contained in this NSData object.
getBytes(ByteBuffer, int) - Method in class com.dd.plist.NSData
Loads the bytes from this NSData object into a byte buffer
getBytes(ByteBuffer, int, int) - Method in class com.dd.plist.NSData
Loads the bytes from this NSData object into a byte buffer
getBytes() - Method in class com.dd.plist.UID
 
getContent() - Method in class com.dd.plist.NSString
Gets this strings content.
getDate() - Method in class com.dd.plist.NSDate
Gets the date.
getHashMap() - Method in class com.dd.plist.NSDictionary
Gets the hashmap which stores the keys and values of this dictionary.
getName() - Method in class com.dd.plist.UID
 
GZIP - Static variable in class com.dd.plist.Base64
Specify that data should be gzip-compressed in second bit.

H

hashCode() - Method in class com.dd.plist.NSArray
 
hashCode() - Method in class com.dd.plist.NSData
 
hashCode() - Method in class com.dd.plist.NSDate
 
hashCode() - Method in class com.dd.plist.NSDictionary
 
hashCode() - Method in class com.dd.plist.NSNumber
 
hashCode() - Method in class com.dd.plist.NSSet
 
hashCode() - Method in class com.dd.plist.NSString
 

I

indexOfIdenticalObject(Object) - Method in class com.dd.plist.NSArray
Searches for an object in the array.
indexOfObject(Object) - Method in class com.dd.plist.NSArray
Searches for an object in the array.
INTEGER - Static variable in class com.dd.plist.NSNumber
Indicates that the number's value is an integer.
intersectsSet(NSSet) - Method in class com.dd.plist.NSSet
Finds out whether at least one object is present in both sets.
intValue() - Method in class com.dd.plist.NSNumber
The number's int value.
isBoolean() - Method in class com.dd.plist.NSNumber
Checks whether the value of this NSNumber is a boolean.
isEmpty() - Method in class com.dd.plist.NSDictionary
 
isInteger() - Method in class com.dd.plist.NSNumber
Checks whether the value of this NSNumber is an integer.
isReal() - Method in class com.dd.plist.NSNumber
Checks whether the value of this NSNumber is a real number.
isSubsetOfSet(NSSet) - Method in class com.dd.plist.NSSet
Finds out if this set is a subset of the given set.

K

keySet() - Method in class com.dd.plist.NSDictionary
 

L

lastObject() - Method in class com.dd.plist.NSArray
Returns the last object contained in this array.
length() - Method in class com.dd.plist.NSData
Gets the amount of data stored in this object.
longValue() - Method in class com.dd.plist.NSNumber
The number's long value.

M

member(NSObject) - Method in class com.dd.plist.NSSet
Determines whether the set contains an object equal to a given object and returns that object if it is present.
MULTILINE_COMMENT_END_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
MULTILINE_COMMENT_SECOND_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 

N

NO_OPTIONS - Static variable in class com.dd.plist.Base64
No options specified.
NSArray - Class in com.dd.plist
Represents an Array.
NSArray(int) - Constructor for class com.dd.plist.NSArray
Creates an empty array of the given length.
NSArray(NSObject...) - Constructor for class com.dd.plist.NSArray
Creates a array from an existing one
NSData - Class in com.dd.plist
NSData objects are wrappers for byte buffers.
NSData(byte[]) - Constructor for class com.dd.plist.NSData
Creates the NSData object from the binary representation of it.
NSData(String) - Constructor for class com.dd.plist.NSData
Creates a NSData object from its textual representation, which is a Base64 encoded amount of bytes.
NSData(File) - Constructor for class com.dd.plist.NSData
Creates a NSData object from a file.
NSDate - Class in com.dd.plist
Represents a date.
NSDate(byte[]) - Constructor for class com.dd.plist.NSDate
Creates a date from its binary representation.
NSDate(String) - Constructor for class com.dd.plist.NSDate
Parses a date from its textual representation.
NSDate(Date) - Constructor for class com.dd.plist.NSDate
Creates a NSDate from a Java Date
NSDictionary - Class in com.dd.plist
A NSDictionary is a collection of keys and values, essentially a Hashtable.
NSDictionary() - Constructor for class com.dd.plist.NSDictionary
Creates a new empty NSDictionary.
NSNumber - Class in com.dd.plist
A number whose value is either an integer, a real number or boolean.
NSNumber(byte[], int) - Constructor for class com.dd.plist.NSNumber
Parses integers and real numbers from their binary representation.
NSNumber(String) - Constructor for class com.dd.plist.NSNumber
Creates a number from its textual representation.
NSNumber(int) - Constructor for class com.dd.plist.NSNumber
Creates an integer number.
NSNumber(long) - Constructor for class com.dd.plist.NSNumber
Creates an integer number.
NSNumber(double) - Constructor for class com.dd.plist.NSNumber
Creates a real number.
NSNumber(boolean) - Constructor for class com.dd.plist.NSNumber
Creates a boolean number.
NSObject - Class in com.dd.plist
Abstract interface for any object contained in a property list.
NSObject() - Constructor for class com.dd.plist.NSObject
 
NSSet - Class in com.dd.plist
A set is an interface to an unordered collection of objects.
NSSet() - Constructor for class com.dd.plist.NSSet
Creates an empty unordered set.
NSSet(boolean) - Constructor for class com.dd.plist.NSSet
Creates an empty set.
NSSet(NSObject...) - Constructor for class com.dd.plist.NSSet
Create a set and fill it with the given objects.
NSSet(boolean, NSObject...) - Constructor for class com.dd.plist.NSSet
Create a set and fill it with the given objects.
NSString - Class in com.dd.plist
A NSString contains a string.
NSString(byte[], String) - Constructor for class com.dd.plist.NSString
Creates an NSString from its binary representation.
NSString(String) - Constructor for class com.dd.plist.NSString
Creates a NSString from a string.

O

objectAtIndex(int) - Method in class com.dd.plist.NSArray
Returns the object stored at the given index.
objectForKey(String) - Method in class com.dd.plist.NSDictionary
Gets the NSObject stored for the given key.
objectIterator() - Method in class com.dd.plist.NSSet
Returns an iterator object that lets you iterate over all elements of the set.
objectsAtIndexes(int...) - Method in class com.dd.plist.NSArray
Returns a new array containing only the values stored at the given indices.
ORDERED - Static variable in class com.dd.plist.Base64
Encode using the special "ordered" dialect of Base64 described here: http://www.faqs.org/qa/rfcc-1940.html.

P

parse(File) - Static method in class com.dd.plist.ASCIIPropertyListParser
Parses an ASCII property list file.
parse(InputStream) - Static method in class com.dd.plist.ASCIIPropertyListParser
Parses an ASCII property list from an input stream.
parse(byte[]) - Static method in class com.dd.plist.ASCIIPropertyListParser
Parses an ASCII property list from a byte array.
parse() - Method in class com.dd.plist.ASCIIPropertyListParser
Parses the property list from the beginning and returns the root object of the property list.
parse(byte[]) - Static method in class com.dd.plist.BinaryPropertyListParser
Parses a binary property list from a byte array.
parse(InputStream) - Static method in class com.dd.plist.BinaryPropertyListParser
Parses a binary property list from an input stream.
parse(File) - Static method in class com.dd.plist.BinaryPropertyListParser
Parses a binary property list file.
parse(String) - Static method in class com.dd.plist.PropertyListParser
Parses a property list from a file.
parse(File) - Static method in class com.dd.plist.PropertyListParser
Parses a property list from a file.
parse(byte[]) - Static method in class com.dd.plist.PropertyListParser
Parses a property list from a byte array.
parse(InputStream) - Static method in class com.dd.plist.PropertyListParser
Parses a property list from an InputStream.
parse(File) - Static method in class com.dd.plist.XMLPropertyListParser
Parses a XML property list file.
parse(byte[]) - Static method in class com.dd.plist.XMLPropertyListParser
Parses a XML property list from a byte array.
parse(InputStream) - Static method in class com.dd.plist.XMLPropertyListParser
Parses a XML property list from an input stream.
parseDouble(byte[]) - Static method in class com.dd.plist.BinaryPropertyListParser
Parses a double from a (big-endian) byte array.
parseDouble(byte[], int, int) - Static method in class com.dd.plist.BinaryPropertyListParser
Parses a double from a (big-endian) byte array.
parseLong(byte[]) - Static method in class com.dd.plist.BinaryPropertyListParser
Parses a long from a (big-endian) byte array.
parseLong(byte[], int, int) - Static method in class com.dd.plist.BinaryPropertyListParser
Parses a long from a (big-endian) byte array.
parseQuotedString(String) - Static method in class com.dd.plist.ASCIIPropertyListParser
Parses a string according to the format specified for ASCII property lists.
parseUnsignedInt(byte[]) - Static method in class com.dd.plist.BinaryPropertyListParser
Parses an unsigned integers from a byte array.
parseUnsignedInt(byte[], int, int) - Static method in class com.dd.plist.BinaryPropertyListParser
Parses an unsigned integer from a byte array.
prepend(String) - Method in class com.dd.plist.NSString
Prepends a string to this string.
prepend(NSString) - Method in class com.dd.plist.NSString
Prepends a string to this string.
PropertyListFormatException - Exception in com.dd.plist
A PropertyListFormatException is thrown by the various property list format parsers when an error in the format of the given property list is encountered.
PropertyListFormatException(String) - Constructor for exception com.dd.plist.PropertyListFormatException
Creates a new exception with the given message.
PropertyListParser - Class in com.dd.plist
This class provides methods to parse property lists.
PropertyListParser() - Constructor for class com.dd.plist.PropertyListParser
Prevent instantiation.
put(String, NSObject) - Method in class com.dd.plist.NSDictionary
Puts a new key-value pair into this dictionary.
put(String, Object) - Method in class com.dd.plist.NSDictionary
Puts a new key-value pair into this dictionary.
put(String, long) - Method in class com.dd.plist.NSDictionary
Puts a new key-value pair into this dictionary.
put(String, double) - Method in class com.dd.plist.NSDictionary
Puts a new key-value pair into this dictionary.
put(String, boolean) - Method in class com.dd.plist.NSDictionary
Puts a new key-value pair into this dictionary.
putAll(Map<? extends String, ? extends NSObject>) - Method in class com.dd.plist.NSDictionary
 

Q

QUOTEDSTRING_BEGIN_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
QUOTEDSTRING_END_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
QUOTEDSTRING_ESCAPE_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 

R

read() - Method in class com.dd.plist.Base64.B64InputStream
Reads enough of the input stream to convert to/from Base64 and returns the next byte.
read(byte[], int, int) - Method in class com.dd.plist.Base64.B64InputStream
Calls Base64.B64InputStream.read() repeatedly until the end of stream is reached or len bytes are read.
readAll(InputStream) - Static method in class com.dd.plist.PropertyListParser
Reads all bytes from an InputStream and stores them in an array, up to a maximum count.
REAL - Static variable in class com.dd.plist.NSNumber
Indicates that the number's value is a real number.
remove(int) - Method in class com.dd.plist.NSArray
Remove the i-th element from the array.
remove(String) - Method in class com.dd.plist.NSDictionary
Removes a key-value pair from this dictionary.
remove(Object) - Method in class com.dd.plist.NSDictionary
 
removeObject(NSObject) - Method in class com.dd.plist.NSSet
Removes an object from the set.
resumeEncoding() - Method in class com.dd.plist.Base64.B64OutputStream
Resumes encoding of the stream.

S

saveAsASCII(NSDictionary, File) - Static method in class com.dd.plist.PropertyListParser
Saves a property list with the given object as root into a ASCII file.
saveAsASCII(NSArray, File) - Static method in class com.dd.plist.PropertyListParser
Saves a property list with the given object as root into a ASCII file.
saveAsBinary(NSObject, File) - Static method in class com.dd.plist.PropertyListParser
Saves a property list with the given object as root into a binary file.
saveAsBinary(NSObject, OutputStream) - Static method in class com.dd.plist.PropertyListParser
Saves a property list with the given object as root in binary format into an output stream.
saveAsGnuStepASCII(NSDictionary, File) - Static method in class com.dd.plist.PropertyListParser
Saves a property list with the given object as root into a ASCII file.
saveAsGnuStepASCII(NSArray, File) - Static method in class com.dd.plist.PropertyListParser
Saves a property list with the given object as root into a ASCII file.
saveAsXML(NSObject, File) - Static method in class com.dd.plist.PropertyListParser
Saves a property list with the given object as root into a XML file.
saveAsXML(NSObject, OutputStream) - Static method in class com.dd.plist.PropertyListParser
Saves a property list with the given object as root in XML format into an output stream.
setContent(String) - Method in class com.dd.plist.NSString
Sets the contents of this string.
setValue(int, Object) - Method in class com.dd.plist.NSArray
Stores an object at the specified index.
SINGLELINE_COMMENT_SECOND_TOKEN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
size() - Method in class com.dd.plist.NSDictionary
 
suspendEncoding() - Method in class com.dd.plist.Base64.B64OutputStream
Suspends encoding of the stream.

T

toASCII(StringBuilder, int) - Method in class com.dd.plist.NSArray
 
toASCII(StringBuilder, int) - Method in class com.dd.plist.NSData
 
toASCII(StringBuilder, int) - Method in class com.dd.plist.NSDate
 
toASCII(StringBuilder, int) - Method in class com.dd.plist.NSDictionary
 
toASCII(StringBuilder, int) - Method in class com.dd.plist.NSNumber
 
toASCII(StringBuilder, int) - Method in class com.dd.plist.NSObject
Generates the ASCII representation of this object.
toASCII(StringBuilder, int) - Method in class com.dd.plist.NSSet
Returns the ASCII representation of this set.
toASCII(StringBuilder, int) - Method in class com.dd.plist.NSString
 
toASCII(StringBuilder, int) - Method in class com.dd.plist.UID
 
toASCIIGnuStep(StringBuilder, int) - Method in class com.dd.plist.NSArray
 
toASCIIGnuStep(StringBuilder, int) - Method in class com.dd.plist.NSData
 
toASCIIGnuStep(StringBuilder, int) - Method in class com.dd.plist.NSDate
 
toASCIIGnuStep(StringBuilder, int) - Method in class com.dd.plist.NSDictionary
 
toASCIIGnuStep(StringBuilder, int) - Method in class com.dd.plist.NSNumber
 
toASCIIGnuStep(StringBuilder, int) - Method in class com.dd.plist.NSObject
Generates the ASCII representation of this object in the GnuStep format.
toASCIIGnuStep(StringBuilder, int) - Method in class com.dd.plist.NSSet
Returns the ASCII representation of this set according to the GnuStep format.
toASCIIGnuStep(StringBuilder, int) - Method in class com.dd.plist.NSString
 
toASCIIGnuStep(StringBuilder, int) - Method in class com.dd.plist.UID
 
toASCIIPropertyList() - Method in class com.dd.plist.NSArray
Generates a valid ASCII property list which has this NSArray as its root object.
toASCIIPropertyList() - Method in class com.dd.plist.NSDictionary
Generates a valid ASCII property list which has this NSDictionary as its root object.
toBinary(BinaryPropertyListWriter) - Method in class com.dd.plist.NSDate
 
toBinary(BinaryPropertyListWriter) - Method in class com.dd.plist.NSString
 
toGnuStepASCIIPropertyList() - Method in class com.dd.plist.NSArray
Generates a valid ASCII property list in GnuStep format which has this NSArray as its root object.
toGnuStepASCIIPropertyList() - Method in class com.dd.plist.NSDictionary
Generates a valid ASCII property list in GnuStep format which has this NSDictionary as its root object.
toJavaObject() - Method in class com.dd.plist.NSObject
Converts this NSObject into an equivalent object of the Java Runtime Environment.
toString() - Method in class com.dd.plist.NSDate
Generates a string representation of the date.
toString() - Method in class com.dd.plist.NSNumber
 
toString() - Method in class com.dd.plist.NSString
The textual representation of this NSString.
toXMLPropertyList() - Method in class com.dd.plist.NSObject
Generates a valid XML property list including headers using this object as root.
type() - Method in class com.dd.plist.NSNumber
Gets the type of this number's value.

U

UID - Class in com.dd.plist
A UID.
UID(String, byte[]) - Constructor for class com.dd.plist.UID
 
URL_SAFE - Static variable in class com.dd.plist.Base64
Encode using Base64-like encoding that is URL- and Filename-safe as described in Section 4 of RFC3548: http://www.faqs.org/rfcs/rfc3548.html.

V

values() - Method in class com.dd.plist.NSDictionary
 
VERSION_00 - Static variable in class com.dd.plist.BinaryPropertyListWriter
 
VERSION_10 - Static variable in class com.dd.plist.BinaryPropertyListWriter
 
VERSION_15 - Static variable in class com.dd.plist.BinaryPropertyListWriter
 
VERSION_20 - Static variable in class com.dd.plist.BinaryPropertyListWriter
 

W

WHITESPACE_CARRIAGE_RETURN - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
WHITESPACE_NEWLINE - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
WHITESPACE_SPACE - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
WHITESPACE_TAB - Static variable in class com.dd.plist.ASCIIPropertyListParser
 
wrap(long) - Static method in class com.dd.plist.NSObject
Wraps the given value inside a NSObject.
wrap(double) - Static method in class com.dd.plist.NSObject
Wraps the given value inside a NSObject.
wrap(boolean) - Static method in class com.dd.plist.NSObject
Wraps the given value inside a NSObject.
wrap(byte[]) - Static method in class com.dd.plist.NSObject
Wraps the given value inside a NSObject.
wrap(Object[]) - Static method in class com.dd.plist.NSObject
Creates a NSArray with the contents of the given array.
wrap(Map<String, Object>) - Static method in class com.dd.plist.NSObject
Creates a NSDictionary with the contents of the given map.
wrap(Set<Object>) - Static method in class com.dd.plist.NSObject
Creates a NSSet with the contents of this set.
wrap(Object) - Static method in class com.dd.plist.NSObject
Creates a NSObject representing the given Java Object.
wrapSerialized(Object) - Static method in class com.dd.plist.NSObject
Serializes the given object using Java's default object serialization and wraps the serialized object in a NSData object.
write(int) - Method in class com.dd.plist.Base64.B64OutputStream
Writes the byte to the output stream after converting to/from Base64 notation.
write(byte[], int, int) - Method in class com.dd.plist.Base64.B64OutputStream
Calls Base64.B64OutputStream.write(int) repeatedly until len bytes are written.
write(File, NSObject) - Static method in class com.dd.plist.BinaryPropertyListWriter
Writes a binary plist file with the given object as the root.
write(OutputStream, NSObject) - Static method in class com.dd.plist.BinaryPropertyListWriter
Writes a binary plist serialization of the given object as the root.
writeToArray(NSObject) - Static method in class com.dd.plist.BinaryPropertyListWriter
Writes a binary plist serialization of the given object as the root into a byte array.

X

XMLPropertyListParser - Class in com.dd.plist
Parses XML property lists.
XMLPropertyListParser() - Constructor for class com.dd.plist.XMLPropertyListParser
Instantiation is prohibited by outside classes.
A B C D E F G H I K L M N O P Q R S T U V W X 
Skip navigation links

Copyright © 2014. All Rights Reserved.