Package aQute.bnd.header
Enum Attrs.Type
- java.lang.Object
-
- java.lang.Enum<Attrs.Type>
-
- aQute.bnd.header.Attrs.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Attrs.Type>
- Enclosing class:
- Attrs
public static enum Attrs.Type extends java.lang.Enum<Attrs.Type>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Attrs.Type
plural()
java.lang.String
toString()
static Attrs.Type
valueOf(java.lang.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.
-
-
-
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(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 namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Attrs.Type>
-
plural
public Attrs.Type plural()
-
-