Java Doc for COSString.java in » PDF » jPod » de » intarsys » pdf » cos » Java Source Code / Java DocumentationJava Source Code and Java Documentation
Java Source Code / Java Documentation
1.
6.0 JDK Core
2.
6.0 JDK Modules
3.
6.0 JDK Modules com.sun
4.
6.0 JDK Modules com.sun.java
5.
6.0 JDK Modules sun
6.
6.0 JDK Platform
7.
Ajax
8.
Apache Harmony Java SE
9.
Aspect oriented
10.
Authentication Authorization
11.
Blogger System
12.
Build
13.
Byte Code
14.
Cache
15.
Chart
16.
Chat
17.
Code Analyzer
18.
Collaboration
19.
Content Management System
20.
Database Client
21.
Database DBMS
22.
Database JDBC Connection Pool
23.
Database ORM
24.
Development
25.
EJB Server geronimo
26.
EJB Server GlassFish
27.
EJB Server JBoss 4.2.1
28.
EJB Server resin 3.1.5
29.
ERP CRM Financial
30.
ESB
31.
Forum
32.
GIS
33.
Graphic Library
34.
Groupware
35.
HTML Parser
36.
IDE
37.
IDE Eclipse
38.
IDE Netbeans
39.
Installer
40.
Internationalization Localization
41.
Inversion of Control
42.
Issue Tracking
43.
J2EE
44.
JBoss
45.
JMS
46.
JMX
47.
Library
48.
Mail Clients
49.
Net
50.
Parser
51.
PDF
52.
Portal
53.
Profiler
54.
Project Management
55.
Report
56.
RSS RDF
57.
Rule Engine
58.
Science
59.
Scripting
60.
Search Engine
61.
Security
62.
Sevlet Container
63.
Source Control
64.
Swing Library
65.
Template Engine
66.
Test Coverage
67.
Testing
68.
UML
69.
Web Crawler
70.
Web Framework
71.
Web Mail
72.
Web Server
73.
Web Services
74.
Web Services apache cxf 2.0.1
75.
Web Services AXIS2
76.
Wiki Engine
77.
Workflow Engines
78.
XML
79.
XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation
»
PDF
»
jPod
»
de.intarsys.pdf.cos
Source Cross Reference
Class Diagram
Java Document (Java Doc)
java.lang
.Object
de.intarsys.pdf.cos
.COSDocumentElement
de.intarsys.pdf.cos
.COSObject
de.intarsys.pdf.cos
.COSPrimitiveObject
de.intarsys.pdf.cos
.COSString
COSString
public
class COSString extends
COSPrimitiveObject
implements
Comparable
(Code)
The string representation for a pdf document
Constructor Summary
protected
COSString
(byte[] newBytes)
protected
COSString
(
COSObject
object)
protected
COSString
(
String
newString)
Method Summary
public
java.lang.Object
accept
(
ICOSObjectVisitor
visitor)
public
COSString
asString
()
protected
String
basicToString
()
public
byte[]
byteValue
()
The bytes that make up this string.
public
int
compareTo
(
Object
o)
protected
COSObject
copyBasic
()
public
static
COSString
create
(byte[] bytes)
Create a
COSString
from
bytes
.
public
static
COSString
create
(
String
string)
Create a
COSString
from
string
.
public
static
COSString
createHex
(byte[] bytes)
Create a
COSString
from
bytes
in hex representation.
public
static
COSString
createHex
(
String
string)
Create a
COSString
from
string
in hex representation.
public
static
COSString
createMultiLine
(
String
string)
Create a
COSString
from
string
, escaoing all newlines.
protected
String
decode
()
protected
byte[]
encode
()
public
boolean
equals
(
Object
o)
public
int
hashCode
()
public
String
hexStringValue
()
Show a hex encoded representation of the strings content.
public
boolean
isHexMode
()
public
String
multiLineStringValue
()
A Java
String
with correctly expanded newlines.
public
void
restoreState
(
Object
object)
public
Object
saveState
()
public
void
setHexMode
(boolean newHexMode)
public
String
stringValue
()
protected
static
String
toJavaString
(
String
value)
protected
static
String
toPDFString
(
String
value)
Constructor Detail
COSString
protected
COSString(byte[] newBytes)
(Code)
COSString
protected
COSString(
COSObject
object)
(Code)
COSString
protected
COSString(
String
newString)
(Code)
Method Detail
accept
public
java.lang.Object
accept(
ICOSObjectVisitor
visitor) throws
COSVisitorException
(Code)
asString
public
COSString
asString()
(Code)
basicToString
protected
String
basicToString()
(Code)
byteValue
public
byte[] byteValue()
(Code)
The bytes that make up this string. The bytes that make up this string.
compareTo
public
int compareTo(
Object
o)
(Code)
copyBasic
protected
COSObject
copyBasic()
(Code)
create
public
static
COSString
create(byte[] bytes)
(Code)
Create a
COSString
from
bytes
.
Parameters:
bytes - The new
COSString
create
public
static
COSString
create(
String
string)
(Code)
Create a
COSString
from
string
.
Parameters:
string - The new
COSString
createHex
public
static
COSString
createHex(byte[] bytes)
(Code)
Create a
COSString
from
bytes
in hex representation.
Parameters:
bytes - The new
COSString
createHex
public
static
COSString
createHex(
String
string)
(Code)
Create a
COSString
from
string
in hex representation.
Parameters:
string - The new
COSString
createMultiLine
public
static
COSString
createMultiLine(
String
string)
(Code)
Create a
COSString
from
string
, escaoing all newlines.
Parameters:
string - The new
COSString
decode
protected
String
decode()
(Code)
decode the string from the byte value in the given encoding the decoded string
encode
protected
byte[] encode()
(Code)
encode the string in byte representation using the correct encoding the encoded string
equals
public
boolean equals(
Object
o)
(Code)
hashCode
public
int hashCode()
(Code)
hexStringValue
public
String
hexStringValue()
(Code)
Show a hex encoded representation of the strings content. Show a hex encoded representation of the strings content.
isHexMode
public
boolean isHexMode()
(Code)
true
if this string has to be saved as hex representation
true
if this string has to be saved as hexrepresentation
multiLineStringValue
public
String
multiLineStringValue()
(Code)
A Java
String
with correctly expanded newlines. A Java
String
with correctly expanded newlines.
restoreState
public
void restoreState(
Object
object)
(Code)
saveState
public
Object
saveState()
(Code)
setHexMode
public
void setHexMode(boolean newHexMode)
(Code)
Set the flag if this is written in hex representation
Parameters:
newHexMode -
true
if this is written in hex representation
stringValue
public
String
stringValue()
(Code)
The Java
String
representation of the receiver The Java
String
representation of the receiver
toJavaString
protected
static
String
toJavaString(
String
value)
(Code)
toPDFString
protected
static
String
toPDFString(
String
value)
(Code)
Methods inherited from
de.intarsys.pdf.cos.COSPrimitiveObject
public
void addObjectListener(
ICOSObjectListener
listener)
(Code)
(Java Doc)
public
java.util.Iterator
basicIterator()
(Code)
(Java Doc)
public
COSObject
copyDeep()
(Code)
(Java Doc)
public
COSObject
copyDeep(
Map
copied)
(Code)
(Java Doc)
public
boolean isDangling()
(Code)
(Java Doc)
public
boolean isObjectListenerAvailable()
(Code)
(Java Doc)
public
boolean isPrimitive()
(Code)
(Java Doc)
public
java.util.Iterator
iterator()
(Code)
(Java Doc)
protected
void registerWith(
COSDocument
doc)
(Code)
(Java Doc)
public
void removeObjectListener(
ICOSObjectListener
listener)
(Code)
(Java Doc)
protected
void triggerChanged(
Object
slot,
Object
oldValue,
Object
newValue)
(Code)
(Java Doc)
Fields inherited from
de.intarsys.pdf.cos.COSObject
final
public
static
ICOSContainer
CONSTANT_CONTAINER
(Code)
(Java Doc)
final
public
static
ICOSContainer
NULL_CONTAINER
(Code)
(Java Doc)
final
public
static
Object
SLOT_CONTAINER
(Code)
(Java Doc)
protected
ICOSContainer
container
(Code)
(Java Doc)
Methods inherited from
de.intarsys.pdf.cos.COSObject
protected
ICOSContainer
addContainer(
ICOSContainer
newContainer)
(Code)
(Java Doc)
abstract
public
void addObjectListener(
ICOSObjectListener
listener)
(Code)
(Java Doc)
public
COSArray
asArray()
(Code)
(Java Doc)
public
COSBoolean
asBoolean()
(Code)
(Java Doc)
public
COSDictionary
asDictionary()
(Code)
(Java Doc)
public
COSFixed
asFixed()
(Code)
(Java Doc)
public
COSInteger
asInteger()
(Code)
(Java Doc)
public
COSName
asName()
(Code)
(Java Doc)
public
COSNull
asNull()
(Code)
(Java Doc)
public
COSNumber
asNumber()
(Code)
(Java Doc)
public
COSStream
asStream()
(Code)
(Java Doc)
public
COSString
asString()
(Code)
(Java Doc)
abstract
public
Iterator
basicIterator()
(Code)
(Java Doc)
protected
void basicSetContainer(
ICOSContainer
newContainer)
(Code)
(Java Doc)
abstract
protected
String
basicToString()
(Code)
(Java Doc)
public
COSObject
beConstant()
(Code)
(Java Doc)
public
COSIndirectObject
beIndirect()
(Code)
(Java Doc)
public
COSDocumentElement
containable()
(Code)
(Java Doc)
abstract
protected
COSObject
copyBasic()
(Code)
(Java Doc)
abstract
public
COSObject
copyDeep()
(Code)
(Java Doc)
abstract
public
COSObject
copyDeep(
Map
copied)
(Code)
(Java Doc)
final
public
COSObject
copyOptional()
(Code)
(Java Doc)
public
COSObject
copyShallow()
(Code)
(Java Doc)
protected
COSDocumentElement
copyShallowNested()
(Code)
(Java Doc)
final
public
COSObject
copySubGraph()
(Code)
(Java Doc)
protected
COSObject
copySubGraph(
Map
copied)
(Code)
(Java Doc)
public
COSObject
dereference()
(Code)
(Java Doc)
public
ICOSContainer
getContainer()
(Code)
(Java Doc)
public
COSDocument
getDoc()
(Code)
(Java Doc)
public
COSIndirectObject
getIndirectObject()
(Code)
(Java Doc)
protected
boolean hasNavigationPathTo(
COSObject
other)
(Code)
(Java Doc)
public
boolean isDangling()
(Code)
(Java Doc)
public
boolean isIndirect()
(Code)
(Java Doc)
public
boolean isNull()
(Code)
(Java Doc)
public
boolean isNumber()
(Code)
(Java Doc)
abstract
public
boolean isObjectListenerAvailable()
(Code)
(Java Doc)
abstract
public
boolean isPrimitive()
(Code)
(Java Doc)
public
boolean isSwapped()
(Code)
(Java Doc)
abstract
public
Iterator
iterator()
(Code)
(Java Doc)
protected
ICOSContainer
removeContainer(
ICOSContainer
oldContainer)
(Code)
(Java Doc)
abstract
public
void removeObjectListener(
ICOSObjectListener
listener)
(Code)
(Java Doc)
public
void restoreState(
Object
saveState)
(Code)
(Java Doc)
public
String
stringValue()
(Code)
(Java Doc)
public
String
toString()
(Code)
(Java Doc)
abstract
protected
void triggerChanged(
Object
slot,
Object
oldValue,
Object
newValue)
(Code)
(Java Doc)
Methods inherited from
de.intarsys.pdf.cos.COSDocumentElement
abstract
public
Object
accept(
ICOSObjectVisitor
visitor) throws
COSVisitorException
(Code)
(Java Doc)
abstract
protected
ICOSContainer
addContainer(
ICOSContainer
newContainer)
(Code)
(Java Doc)
abstract
public
COSDocumentElement
containable()
(Code)
(Java Doc)
abstract
protected
COSObject
copyDeep(
Map
copied)
(Code)
(Java Doc)
abstract
protected
COSDocumentElement
copyShallowNested()
(Code)
(Java Doc)
abstract
public
COSObject
dereference()
(Code)
(Java Doc)
protected
boolean equals(
Object
o,
Set
visited)
(Code)
(Java Doc)
abstract
public
COSDocument
getDoc()
(Code)
(Java Doc)
public
void handleException(
COSRuntimeException
ex) throws
COSRuntimeException
(Code)
(Java Doc)
public
boolean isReference()
(Code)
(Java Doc)
public
boolean isSwapped()
(Code)
(Java Doc)
abstract
protected
void registerWith(
COSDocument
doc)
(Code)
(Java Doc)
abstract
protected
ICOSContainer
removeContainer(
ICOSContainer
oldContainer)
(Code)
(Java Doc)
Methods inherited from
java.lang.Object
native
protected
Object
clone() throws
CloneNotSupportedException
(Code)
(Java Doc)
public
boolean equals(
Object
obj)
(Code)
(Java Doc)
protected
void finalize() throws
Throwable
(Code)
(Java Doc)
final native
public
Class
> getClass()
(Code)
(Java Doc)
native
public
int hashCode()
(Code)
(Java Doc)
final native
public
void notify()
(Code)
(Java Doc)
final native
public
void notifyAll()
(Code)
(Java Doc)
public
String
toString()
(Code)
(Java Doc)
final native
public
void wait(long timeout) throws
InterruptedException
(Code)
(Java Doc)
final
public
void wait(long timeout, int nanos) throws
InterruptedException
(Code)
(Java Doc)
final
public
void wait() throws
InterruptedException
(Code)
(Java Doc)
www.java2java.com
|
Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.