Skip navigation links

Oracle Outside In Java API Reference
8.5.4

E91699-01


com.oracle.outsidein
Enum ExportStatus.ExportStatusFlags

java.lang.Object
  extended by java.lang.Enum<ExportStatus.ExportStatusFlags>
      extended by com.oracle.outsidein.ExportStatus.ExportStatusFlags

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExportStatus.ExportStatusFlags>
Enclosing class:
ExportStatus

public static enum ExportStatus.ExportStatusFlags
extends java.lang.Enum<ExportStatus.ExportStatusFlags>

Flags indicating data that was encountered during the conversion. These flags describe certain limitations of the Outside In technology. When a limitation is encountered in a source document, the associated flag is set to indicate that that feature was present in the document.


Enum Constant Summary
ALIASEDFONT
          The desired font was missing, but a font alias was used.
EQUATIONS
          A file had equations.
FORMS
          A sub documents had forms.
INVALIDANNOTATIONNOTAPPLIED
          An annotation specified through EXApplyHilites is not applied to the exported output
INVALIDHTML
          Non-standard HTML was encountered.
MISSINGFONT
          The desired font wasn't present on the system.
MISSINGMAP
          A PDF text run was missing the toUnicode table.
NOINFORMATIONAVAILABLE
          No Information is available.
RIGHTTOLEFTTABLES
          A table had right to left columns.
SUBDOCFAILED
          A subdocument was not converted.
TEXTEFFECTS
          A run that had unsupported text effects applied.
TYPETHREEFONT
          A Type3 font was encountered.
UNSUPPORTEDCOLORSPACE
          A graphic had an unsupported color space.
UNSUPPORTEDCOMPRESSION
          A graphic had an unsupported compression.
UNSUPPORTEDSHADING
          An unsupported shading pattern was encountered.
VECTOROBJECTLIMIT
          Vector Object Limit Exceeded.
VERTICALTEXT
          A vertical text run was present.

 

Method Summary
static ExportStatus.ExportStatusFlags valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExportStatus.ExportStatusFlags[] 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

NOINFORMATIONAVAILABLE

public static final ExportStatus.ExportStatusFlags NOINFORMATIONAVAILABLE
No Information is available.

MISSINGMAP

public static final ExportStatus.ExportStatusFlags MISSINGMAP
A PDF text run was missing the toUnicode table.

VERTICALTEXT

public static final ExportStatus.ExportStatusFlags VERTICALTEXT
A vertical text run was present.

TEXTEFFECTS

public static final ExportStatus.ExportStatusFlags TEXTEFFECTS
A run that had unsupported text effects applied. One example is Word Art.

UNSUPPORTEDCOMPRESSION

public static final ExportStatus.ExportStatusFlags UNSUPPORTEDCOMPRESSION
A graphic had an unsupported compression.

UNSUPPORTEDCOLORSPACE

public static final ExportStatus.ExportStatusFlags UNSUPPORTEDCOLORSPACE
A graphic had an unsupported color space.

FORMS

public static final ExportStatus.ExportStatusFlags FORMS
A sub documents had forms.

RIGHTTOLEFTTABLES

public static final ExportStatus.ExportStatusFlags RIGHTTOLEFTTABLES
A table had right to left columns.

EQUATIONS

public static final ExportStatus.ExportStatusFlags EQUATIONS
A file had equations.

ALIASEDFONT

public static final ExportStatus.ExportStatusFlags ALIASEDFONT
The desired font was missing, but a font alias was used.

MISSINGFONT

public static final ExportStatus.ExportStatusFlags MISSINGFONT
The desired font wasn't present on the system.

SUBDOCFAILED

public static final ExportStatus.ExportStatusFlags SUBDOCFAILED
A subdocument was not converted.

TYPETHREEFONT

public static final ExportStatus.ExportStatusFlags TYPETHREEFONT
A Type3 font was encountered.

UNSUPPORTEDSHADING

public static final ExportStatus.ExportStatusFlags UNSUPPORTEDSHADING
An unsupported shading pattern was encountered.

INVALIDHTML

public static final ExportStatus.ExportStatusFlags INVALIDHTML
Non-standard HTML was encountered.

VECTOROBJECTLIMIT

public static final ExportStatus.ExportStatusFlags VECTOROBJECTLIMIT
Vector Object Limit Exceeded.

INVALIDANNOTATIONNOTAPPLIED

public static final ExportStatus.ExportStatusFlags INVALIDANNOTATIONNOTAPPLIED
An annotation specified through EXApplyHilites is not applied to the exported output

Method Detail

values

public static ExportStatus.ExportStatusFlags[] 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 (ExportStatus.ExportStatusFlags c : ExportStatus.ExportStatusFlags.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ExportStatus.ExportStatusFlags 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.