Enum Constant and Description |
---|
__UNKNOWN_CONSTANT__ |
SOCK_DGRAM |
SOCK_MAXADDRLEN |
SOCK_RAW |
SOCK_RDM |
SOCK_SEQPACKET |
SOCK_STREAM |
Modifier and Type | Field and Description |
---|---|
private static ConstantResolver<Sock> |
resolver |
Modifier and Type | Method and Description |
---|---|
boolean |
defined() |
java.lang.String |
description() |
int |
intValue() |
long |
longValue() |
java.lang.String |
toString() |
int |
value() |
static Sock |
valueOf(long value) |
static Sock |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Sock[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sock SOCK_STREAM
public static final Sock SOCK_DGRAM
public static final Sock SOCK_RAW
public static final Sock SOCK_RDM
public static final Sock SOCK_SEQPACKET
public static final Sock SOCK_MAXADDRLEN
public static final Sock __UNKNOWN_CONSTANT__
private static final ConstantResolver<Sock> resolver
public static Sock[] values()
for (Sock c : Sock.values()) System.out.println(c);
public static Sock valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic final int value()
public final java.lang.String description()
public final java.lang.String toString()
toString
in class java.lang.Enum<Sock>
public static Sock valueOf(long value)