Skip navigation links

Oracle Outside In Java API Reference
8.5.4

E91699-01


com.oracle.outsidein.options
Enum Options.XXFormatOptionValues

java.lang.Object
  extended by java.lang.Enum<Options.XXFormatOptionValues>
      extended by com.oracle.outsidein.options.Options.XXFormatOptionValues

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Options.XXFormatOptionValues>
Enclosing class:
Options

public static enum Options.XXFormatOptionValues
extends java.lang.Enum<Options.XXFormatOptionValues>

Flags that can affect the output when exporting to the FLEXIONDOC destination file format.


Enum Constant Summary
BITMAPASBITMAP
          dr.image objects are converted to a graphic file and the resulting file is referenced by the locator child of the dr.image.
CHARTASBITMAP
          ch.chart objects are converted to a graphic file and the resulting file is referenced by the locator child of the ch.chart.
DEFAULTCHARACTERMAPPING
          Default behavior: All text is mapped to Unicode, in tx.text elements.
DELIMITERS
          Often, files have individual characters that are placed at specific draw locations.
FLATTENSTYLES
          Flatten styles to eliminate the need to process the "based-on=" attribute.
GENERATESYSTEMMETADATA
          When this flag is set, system metadata will be generated.
INCLUDETEXTOFFSETS
          Include text_offset attribute on tx.p and tx.r elements.
ISODATES
          Use ISO 8601 formatting for all date and date/time values.
MAPPEDANDUNMAPPEDCHARACTERS
          Both mapped and unmapped text is included as an alt element containing tx.text and tx.utext.
MAPTEXT
          Text is mapped to Unicode where possible, unmappable text is left in the original character set.
NOBITMAPELEMENTS
          Bitmap graphics are suppressed; no dr.image content will appear in the converted document.
NOCHARACTERMAPPING
          All text is left in the original character set, in tx.utext elements.
NOCHARTELEMENTS
          Charts are suppressed; no ch.chart content will appear in the converted document.
NOPRESENTATIONELEMENTS
          Presentation slides are suppressed; no pr.slide content will appear in the converted document.
NOVECTORELEMENTS
          Vector drawings are suppressed; no dr.drawing content will appear in the converted document.
OPTIMIZESECTIONS
          Use wp.section elements to delineate column references.
PRESENTATIONASBITMAP
          pr.slide objects are converted to a graphic file and the resulting file is referenced by the locator child of the pr.slide.
PROCESSARCHIVESUBDOCUMENTS
          Process all archive sub-objects and put the output in the main Flexiondoc output
PROCESSATTACHMENTSUBDOCUMENTS
          Process all attachments and put the output in the main Flexiondoc output
PROCESSEMBEDDINGSUBDOCUMENTS
          Process all embeddings and put the output in the main Flexiondoc output
REMOVEFONTGROUPS
          Replace font groups with references to individual fonts.
SEPARATESTYLETABLES
          Enabling this flag will cause the style_tables subtree to be streamed to a separate output unit.
USEFULLFILEPATHS
          Locators for externalized embeddings will contain full, absolute path names.
VECTORASBITMAP
          dr.drawing objects are converted to a graphic file and the resulting file is referenced by the locator child of the dr.drawing.

 

Field Summary
 long value
           

 

Method Summary
static Options.XXFormatOptionValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Options.XXFormatOptionValues[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

DELIMITERS

public static final Options.XXFormatOptionValues DELIMITERS
Often, files have individual characters that are placed at specific draw locations. Consequently, the Flexiondoc converter produces individual draw_text characters without any indication of word boundaries. This flag forces the Flexiondoc converter to attempt to determine where words and lines end. The input filters indicate these positions by producing a WORD_DELIMITER for word endings, and a DELIMITER for line endings. These delimiters are passed along in the Flexiondoc output to assist the user in reconstructing words and lines.

OPTIMIZESECTIONS

public static final Options.XXFormatOptionValues OPTIMIZESECTIONS
Use wp.section elements to delineate column references.

FLATTENSTYLES

public static final Options.XXFormatOptionValues FLATTENSTYLES
Flatten styles to eliminate the need to process the "based-on=" attribute. By turning on this option, paragraph style should all be fully attributed. Character styles can't be fullly attributed, that is, they won't always be completely flattened.

PROCESSARCHIVESUBDOCUMENTS

public static final Options.XXFormatOptionValues PROCESSARCHIVESUBDOCUMENTS
Process all archive sub-objects and put the output in the main Flexiondoc output

PROCESSATTACHMENTSUBDOCUMENTS

public static final Options.XXFormatOptionValues PROCESSATTACHMENTSUBDOCUMENTS
Process all attachments and put the output in the main Flexiondoc output

PROCESSEMBEDDINGSUBDOCUMENTS

public static final Options.XXFormatOptionValues PROCESSEMBEDDINGSUBDOCUMENTS
Process all embeddings and put the output in the main Flexiondoc output

REMOVEFONTGROUPS

public static final Options.XXFormatOptionValues REMOVEFONTGROUPS
Replace font groups with references to individual fonts.

INCLUDETEXTOFFSETS

public static final Options.XXFormatOptionValues INCLUDETEXTOFFSETS
Include text_offset attribute on tx.p and tx.r elements.

SEPARATESTYLETABLES

public static final Options.XXFormatOptionValues SEPARATESTYLETABLES
Enabling this flag will cause the style_tables subtree to be streamed to a separate output unit. This item is deprecated.

USEFULLFILEPATHS

public static final Options.XXFormatOptionValues USEFULLFILEPATHS
Locators for externalized embeddings will contain full, absolute path names.

BITMAPASBITMAP

public static final Options.XXFormatOptionValues BITMAPASBITMAP
dr.image objects are converted to a graphic file and the resulting file is referenced by the locator child of the dr.image.

CHARTASBITMAP

public static final Options.XXFormatOptionValues CHARTASBITMAP
ch.chart objects are converted to a graphic file and the resulting file is referenced by the locator child of the ch.chart.

PRESENTATIONASBITMAP

public static final Options.XXFormatOptionValues PRESENTATIONASBITMAP
pr.slide objects are converted to a graphic file and the resulting file is referenced by the locator child of the pr.slide.

VECTORASBITMAP

public static final Options.XXFormatOptionValues VECTORASBITMAP
dr.drawing objects are converted to a graphic file and the resulting file is referenced by the locator child of the dr.drawing.

GENERATESYSTEMMETADATA

public static final Options.XXFormatOptionValues GENERATESYSTEMMETADATA
When this flag is set, system metadata will be generated. This information is gathered through system calls and may adversely affect performance.

NOBITMAPELEMENTS

public static final Options.XXFormatOptionValues NOBITMAPELEMENTS
Bitmap graphics are suppressed; no dr.image content will appear in the converted document.

NOCHARTELEMENTS

public static final Options.XXFormatOptionValues NOCHARTELEMENTS
Charts are suppressed; no ch.chart content will appear in the converted document.

NOPRESENTATIONELEMENTS

public static final Options.XXFormatOptionValues NOPRESENTATIONELEMENTS
Presentation slides are suppressed; no pr.slide content will appear in the converted document.

NOVECTORELEMENTS

public static final Options.XXFormatOptionValues NOVECTORELEMENTS
Vector drawings are suppressed; no dr.drawing content will appear in the converted document.

DEFAULTCHARACTERMAPPING

public static final Options.XXFormatOptionValues DEFAULTCHARACTERMAPPING
Default behavior: All text is mapped to Unicode, in tx.text elements.

NOCHARACTERMAPPING

public static final Options.XXFormatOptionValues NOCHARACTERMAPPING
All text is left in the original character set, in tx.utext elements.

MAPTEXT

public static final Options.XXFormatOptionValues MAPTEXT
Text is mapped to Unicode where possible, unmappable text is left in the original character set.

MAPPEDANDUNMAPPEDCHARACTERS

public static final Options.XXFormatOptionValues MAPPEDANDUNMAPPEDCHARACTERS
Both mapped and unmapped text is included as an alt element containing tx.text and tx.utext.

ISODATES

public static final Options.XXFormatOptionValues ISODATES
Use ISO 8601 formatting for all date and date/time values.

Field Detail

value

public final long value

Method Detail

values

public static Options.XXFormatOptionValues[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Options.XXFormatOptionValues c : Options.XXFormatOptionValues.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Options.XXFormatOptionValues valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Skip navigation links

Oracle Outside In Java API Reference
8.5.4

E91699-01


Copyright © 2010, 2018, Oracle and/or its affiliates. All rights reserved.