Enum RtfFnc

java.lang.Object
java.lang.Enum<RtfFnc>
com.scroogexhtml.rtf.RtfFnc
All Implemented Interfaces:
Serializable, Comparable<RtfFnc>

public enum RtfFnc extends Enum<RtfFnc>
This enum defines available RTF functions.
  • Enum Constant Details

    • FN_BIN

      public static final RtfFnc FN_BIN
      bin mode.
    • FN_HEX

      public static final RtfFnc FN_HEX
      hex mode.
    • FN_SKIPDEST

      public static final RtfFnc FN_SKIPDEST
      skip mode.
    • FN_PAR

      public static final RtfFnc FN_PAR
      paragraph.
    • FN_PLAIN

      public static final RtfFnc FN_PLAIN
      plain.
    • FN_SKIPWORD

      public static final RtfFnc FN_SKIPWORD
      skip word.
    • FN_TROWD

      public static final RtfFnc FN_TROWD
      table row default.
    • FN_INTBL

      public static final RtfFnc FN_INTBL
      paragraph is in table.
    • FN_CELL

      public static final RtfFnc FN_CELL
      Table Cell.
    • FN_ROW

      public static final RtfFnc FN_ROW
      Table Row.
    • FN_CLBRDRT

      public static final RtfFnc FN_CLBRDRT
      Table cell border top.
    • FN_CLBRDRR

      public static final RtfFnc FN_CLBRDRR
      Table cell border right.
    • FN_CLBRDRL

      public static final RtfFnc FN_CLBRDRL
      Table cell border left.
    • FN_CLBRDRB

      public static final RtfFnc FN_CLBRDRB
      Table cell border bottom.
    • FN_TRBRDRT

      public static final RtfFnc FN_TRBRDRT
      Table row border top.
    • FN_TRBRDRR

      public static final RtfFnc FN_TRBRDRR
      Table row border right.
    • FN_TRBRDRL

      public static final RtfFnc FN_TRBRDRL
      Table row border left.
    • FN_TRBRDRB

      public static final RtfFnc FN_TRBRDRB
      Table row border bottom.
    • FN_CLMRG

      public static final RtfFnc FN_CLMRG
      The contents of the table cell are merged with those of the preceding cell.
    • FN_CLVERTALT

      public static final RtfFnc FN_CLVERTALT
      Text is top-aligned in cell (the default).
    • FN_CLVERTALC

      public static final RtfFnc FN_CLVERTALC
      Text is centered vertically in cell.
    • FN_CLVERTALB

      public static final RtfFnc FN_CLVERTALB
      Text is bottom-aligned in cell.
    • FN_LINE

      public static final RtfFnc FN_LINE
      Required line break (no paragraph break).
    • FN_NBSP

      public static final RtfFnc FN_NBSP
      Non-breaking space.
    • FN_CHFTN

      public static final RtfFnc FN_CHFTN
      Automatic footnote reference.
    • FN_HEADER

      public static final RtfFnc FN_HEADER
      Header / footer start.
    • FN_NONSHPPICT

      public static final RtfFnc FN_NONSHPPICT
      Specifies that Word 97 has written a \pict destination that it will not read on input. This keyword is for compatibility with other readers.
    • FN_NESTCELL

      public static final RtfFnc FN_NESTCELL
      Denotes the end of a nested cell.
    • FN_NESTROW

      public static final RtfFnc FN_NESTROW
      Denotes the end of a nested row.
    • FN_NESTTABLEPROPS

      public static final RtfFnc FN_NESTTABLEPROPS
      Denotes the start of nested table properties.
      See Also:
  • Method Details

    • values

      public static RtfFnc[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static RtfFnc valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null