Enum ColormapTypesEnum

    • Field Summary

      Fields 
      Modifier and Type Field Description
      int value  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static ColormapTypesEnum valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ColormapTypesEnum[] 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

      • COLORMAP_AUTUMN

        public static final ColormapTypesEnum COLORMAP_AUTUMN
        ![autumn](pics/colormaps/colorscale_autumn.jpg)
      • COLORMAP_BONE

        public static final ColormapTypesEnum COLORMAP_BONE
        ![bone](pics/colormaps/colorscale_bone.jpg)
      • COLORMAP_JET

        public static final ColormapTypesEnum COLORMAP_JET
        ![jet](pics/colormaps/colorscale_jet.jpg)
      • COLORMAP_WINTER

        public static final ColormapTypesEnum COLORMAP_WINTER
        ![winter](pics/colormaps/colorscale_winter.jpg)
      • COLORMAP_RAINBOW

        public static final ColormapTypesEnum COLORMAP_RAINBOW
        ![rainbow](pics/colormaps/colorscale_rainbow.jpg)
      • COLORMAP_OCEAN

        public static final ColormapTypesEnum COLORMAP_OCEAN
        ![ocean](pics/colormaps/colorscale_ocean.jpg)
      • COLORMAP_SUMMER

        public static final ColormapTypesEnum COLORMAP_SUMMER
        ![summer](pics/colormaps/colorscale_summer.jpg)
      • COLORMAP_SPRING

        public static final ColormapTypesEnum COLORMAP_SPRING
        ![spring](pics/colormaps/colorscale_spring.jpg)
      • COLORMAP_COOL

        public static final ColormapTypesEnum COLORMAP_COOL
        ![cool](pics/colormaps/colorscale_cool.jpg)
      • COLORMAP_HSV

        public static final ColormapTypesEnum COLORMAP_HSV
        ![HSV](pics/colormaps/colorscale_hsv.jpg)
      • COLORMAP_PINK

        public static final ColormapTypesEnum COLORMAP_PINK
        ![pink](pics/colormaps/colorscale_pink.jpg)
      • COLORMAP_HOT

        public static final ColormapTypesEnum COLORMAP_HOT
        ![hot](pics/colormaps/colorscale_hot.jpg)
      • COLORMAP_PARULA

        public static final ColormapTypesEnum COLORMAP_PARULA
        ![hot](pics/colormaps/colorscale_parula.jpg)
    • Field Detail

      • value

        public final int value
    • Method Detail

      • values

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

        public static ColormapTypesEnum 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