public enum Local extends Enum<Local> implements Constant
| Enum Constant and Description |
|---|
__UNKNOWN_CONSTANT__ |
LOCAL_CONNWAIT |
LOCAL_CREDS |
LOCAL_PEERCRED |
| Modifier and Type | Method and Description |
|---|---|
boolean |
defined() |
String |
description() |
int |
intValue() |
long |
longValue() |
String |
toString() |
int |
value() |
static Local |
valueOf(long value) |
static Local |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Local[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Local LOCAL_PEERCRED
public static final Local LOCAL_CREDS
public static final Local LOCAL_CONNWAIT
public static final Local __UNKNOWN_CONSTANT__
public static Local[] values()
for (Local c : Local.values()) System.out.println(c);
public static Local valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic final int value()
public final String description()
public static Local valueOf(long value)
Copyright © 2025. All rights reserved.