aQute.bnd.header
Enum Attrs.Type

java.lang.Object
  extended by java.lang.Enum<Attrs.Type>
      extended by aQute.bnd.header.Attrs.Type
All Implemented Interfaces:
Serializable, Comparable<Attrs.Type>
Enclosing class:
Attrs

public static enum Attrs.Type
extends Enum<Attrs.Type>


Enum Constant Summary
DOUBLE
           
DOUBLES
           
LONG
           
LONGS
           
STRING
           
STRINGS
           
VERSION
           
VERSIONS
           
 
Method Summary
 Attrs.Type plural()
           
 String toString()
           
static Attrs.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Attrs.Type[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

STRING

public static final Attrs.Type STRING

LONG

public static final Attrs.Type LONG

VERSION

public static final Attrs.Type VERSION

DOUBLE

public static final Attrs.Type DOUBLE

STRINGS

public static final Attrs.Type STRINGS

LONGS

public static final Attrs.Type LONGS

VERSIONS

public static final Attrs.Type VERSIONS

DOUBLES

public static final Attrs.Type DOUBLES
Method Detail

values

public static Attrs.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 (Attrs.Type c : Attrs.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 Attrs.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

toString

public String toString()
Overrides:
toString in class Enum<Attrs.Type>

plural

public Attrs.Type plural()


Copyright © 2014 aQute SARL. All rights reserved.