All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kenai.constantine.platform.fake.INAddr Maven / Gradle / Ivy

There is a newer version: 0.10.4
Show newest version
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated Sat May 02 18:23:33 +1000 2009
package com.kenai.constantine.platform.fake;
public enum INAddr implements com.kenai.constantine.Constant {
INADDR_ANY(1),
INADDR_BROADCAST(2),
INADDR_NONE(3),
INADDR_LOOPBACK(4),
INADDR_UNSPEC_GROUP(5),
INADDR_ALLHOSTS_GROUP(6),
INADDR_ALLRTRS_GROUP(7),
INADDR_MAX_LOCAL_GROUP(8);
private final int value;
private INAddr(int value) { this.value = value; }
public static final long MIN_VALUE = 1;
public static final long MAX_VALUE = 8;
public final int value() { return value; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy