Enum FileViewerContext.Type

    • Enum Constant Detail

      • FILE

        public static final FileViewerContext.Type FILE
        The context is a regular file listing context. There is no parent item or other related items.
      • ANY_TO_ANY

        public static final FileViewerContext.Type ANY_TO_ANY
        The context is a list with any-to-any links from a parent item. A parent item should be available as well as the any-to-any item.
      • DATA_FILE

        public static final FileViewerContext.Type DATA_FILE
        The context is a list with data-files that are attached to a parent item. A parent item should be available as well as the data file type and file set membership information.
    • Constructor Detail

      • Type

        private Type()
    • Method Detail

      • values

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

        public static FileViewerContext.Type 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