com.groupdocs.viewer.options

Enum Field

    • Enum Constant Detail

      • ANNIVERSARY

        public static final Field ANNIVERSARY

        Default field text is "Anniversary".

      • ATTACHMENTS

        public static final Field ATTACHMENTS

        Default field text is "Attachments".

      • BCC

        public static final Field BCC

        Default field text is "Bcc".

      • BIRTHDAY

        public static final Field BIRTHDAY

        Default field text is "Birthday".

      • BUSINESS

        public static final Field BUSINESS

        Default field text is "Business".

      • BUSINESS_ADDRESS

        public static final Field BUSINESS_ADDRESS

        Default field text is "Business Address".

      • BUSINESS_FAX

        public static final Field BUSINESS_FAX

        Default field text is "Business Fax".

      • BUSINESS_HOMEPAGE

        public static final Field BUSINESS_HOMEPAGE

        Default field text is "BusinessHomepage".

      • CC

        public static final Field CC

        Default field text is "Cc".

      • COMPANY

        public static final Field COMPANY

        Default field text is "Company".

      • DEPARTMENT

        public static final Field DEPARTMENT

        Default field text is "Department".

      • EMAIL

        public static final Field EMAIL

        Default field text is "Email".

      • EMAIL_2

        public static final Field EMAIL_2

        Default field text is "Email2".

      • EMAIL_2_DISPLAY_AS

        public static final Field EMAIL_2_DISPLAY_AS

        Default field text is "Email2 Display As".

      • EMAIL_3

        public static final Field EMAIL_3

        Default field text is "Email3".

      • EMAIL_3_DISPLAY_AS

        public static final Field EMAIL_3_DISPLAY_AS

        Default field text is "Email3 Display As".

      • EMAIL_DISPLAY_AS

        public static final Field EMAIL_DISPLAY_AS

        Default field text is "Email Display As".

      • END

        public static final Field END

        Default field text is "End".

      • FIRST_NAME

        public static final Field FIRST_NAME

        Default field text is "First Name".

      • FROM

        public static final Field FROM

        Default field text is "From".

      • FULL_NAME

        public static final Field FULL_NAME

        Default field text is "Full Name".

      • GENDER

        public static final Field GENDER

        Default field text is "Gender".

      • HOBBIES

        public static final Field HOBBIES

        Default field text is "Hobbies".

      • HOME

        public static final Field HOME

        Default field text is "Home".

      • HOME_ADDRESS

        public static final Field HOME_ADDRESS

        Default field text is "Home Address".

      • IMPORTANCE

        public static final Field IMPORTANCE

        Default field text is "Importance".

      • JOB_TITLE

        public static final Field JOB_TITLE

        Default field text is "Job Title".

      • LAST_NAME

        public static final Field LAST_NAME

        Default field text is "Last Name".

      • LOCATION

        public static final Field LOCATION

        Default field text is "Location".

      • MIDDLE_NAME

        public static final Field MIDDLE_NAME

        Default field text is "Middle Name".

      • MOBILE

        public static final Field MOBILE

        Default field text is "Mobile".

      • ORGANIZER

        public static final Field ORGANIZER

        Default field text is "Organizer".

      • OTHER_ADDRESS

        public static final Field OTHER_ADDRESS

        Default field text is "Other Address".

      • PERSONAL_HOMEPAGE

        public static final Field PERSONAL_HOMEPAGE

        Default field text is "Personal Homepage".

      • PROFESSION

        public static final Field PROFESSION

        Default field text is "Profession".

      • RECURRENCE

        public static final Field RECURRENCE

        Default field text is "Recurrence"

      • RECURRENCE_PATTERN

        public static final Field RECURRENCE_PATTERN

        Default field text is "Recurrence Pattern".

      • REQUIRED_ATTENDEES

        public static final Field REQUIRED_ATTENDEES

        Default field text is "Required Attendees".

      • SENT

        public static final Field SENT

        Default field text is "Sent".

      • SHOW_TIME_AS

        public static final Field SHOW_TIME_AS

        Default field text is "Show Time As".

      • SPOUSE_PARTNER

        public static final Field SPOUSE_PARTNER

        Default field text is "Spouse/Partner".

      • START

        public static final Field START

        Default field text is "Start".

      • SUBJECT

        public static final Field SUBJECT

        Default field text is "Subject".

      • TO

        public static final Field TO

        Default field text is "To".

      • USER_FIELD_1

        public static final Field USER_FIELD_1

        Default field text is "User Field 1".

      • USER_FIELD_2

        public static final Field USER_FIELD_2

        Default field text is "User Field 2".

      • USER_FIELD_3

        public static final Field USER_FIELD_3

        Default field text is "User Field 3".

      • USER_FIELD_4

        public static final Field USER_FIELD_4

        Default field text is "User Field 4".

    • Method Detail

      • getName

        public final String getName()
        Field name.
        Returns:
        Field name.
      • toString

        public String toString()

        Returns a string that represents the current object.

        Overrides:
        toString in class Enum<Field>
        Returns:
        A string that represents the current object.
      • valueOf

        public static Field 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
      • values

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