Package
Class
Use
Tree
Deprecated
Index
All Classes
Help
Prev Class
Next Class
VCollections – Release 1
Enum org.violetlib.collections.ListUsage
Inherited members: ShowHide
Deprecated: ShowHide
org.violetlib.collections

Enum ListUsage

  • Object
    • Enum<ListUsage>
      • ListUsage
  • All Implemented Interfaces:
    Serializable, Comparable<ListUsage>
    public enum ListUsage extends Enum<ListUsage>
    Options to select a list implementation based on usage.
    • Enum Constants 
      Enum Constant and Description
      Ordinary member indicator ACCESS Reveal DetailHide Detail
      ACCESS
       
      public static final ListUsage ACCESS
      Ordinary member indicator APPEND Reveal DetailHide Detail
      APPEND
       
      public static final ListUsage APPEND
      Ordinary member indicator DEFAULT Reveal DetailHide Detail
      DEFAULT
       
      public static final ListUsage DEFAULT
      Ordinary member indicator PREPEND Reveal DetailHide Detail
      PREPEND
       
      public static final ListUsage PREPEND
    • Static Methods 
      Modifier and Type Static Method and Description
      Ordinary member indicator valueOf Reveal DetailHide Detail
      static ListUsage valueOf(String name)
      Returns the enum constant of this type with the specified name.
      public static ListUsage 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
      Ordinary member indicator values Reveal DetailHide Detail
      static ListUsage[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      public static ListUsage[] 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 (ListUsage c : ListUsage.values())
          System.out.println(c);
      
      Returns:
      an array containing the constants of this enum type, in the order they are declared
      • Static methods inherited from class Enum

        valueOf
      • Methods inherited from class Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString
      • Methods inherited from class Object

        getClass, notify, notifyAll, wait, wait, wait