jnr.constants.platform.openbsd.NameInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-constants Show documentation
Show all versions of jnr-constants Show documentation
A set of platform constants (e.g. errno values)
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated 2018-09-20 14:44:23 -0600
package jnr.constants.platform.openbsd;
public enum NameInfo implements jnr.constants.Constant {
NI_MAXHOST(256L),
NI_MAXSERV(32L),
NI_NOFQDN(4L),
NI_NUMERICHOST(1L),
NI_NAMEREQD(8L),
NI_NUMERICSERV(2L),
NI_DGRAM(16L);
// NI_WITHSCOPEID not defined
private final long value;
private NameInfo(long value) { this.value = value; }
public static final long MIN_VALUE = 1L;
public static final long MAX_VALUE = 256L;
static final class StringTable {
public static final java.util.Map descriptions = generateTable();
public static final java.util.Map generateTable() {
java.util.Map map = new java.util.EnumMap(NameInfo.class);
map.put(NI_MAXHOST, "NI_MAXHOST");
map.put(NI_MAXSERV, "NI_MAXSERV");
map.put(NI_NOFQDN, "NI_NOFQDN");
map.put(NI_NUMERICHOST, "NI_NUMERICHOST");
map.put(NI_NAMEREQD, "NI_NAMEREQD");
map.put(NI_NUMERICSERV, "NI_NUMERICSERV");
map.put(NI_DGRAM, "NI_DGRAM");
return map;
}
}
public final String toString() { return StringTable.descriptions.get(this); }
public final int value() { return (int) value; }
public final int intValue() { return (int) value; }
public final long longValue() { return value; }
public final boolean defined() { return true; }
}