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

org.xbill.DNS.ExtendedFlags Maven / Gradle / Ivy

There is a newer version: 2.0-beta-7
Show newest version
// Copyright (c) 2004 Brian Wellington ([email protected])

package org.xbill.DNS;

/**
 * Constants and functions relating to EDNS flags.
 *
 * @author Brian Wellington
 */

public final class ExtendedFlags {

private static Mnemonic extflags = new Mnemonic("EDNS Flag",
						Mnemonic.CASE_LOWER);

/** dnssec ok */
public static final int DO		= 0x8000;

static {
	extflags.setMaximum(0xFFFF);
	extflags.setPrefix("FLAG");
	extflags.setNumericAllowed(true);

	extflags.add(DO, "do");
}

private
ExtendedFlags() {}

/** Converts a numeric extended flag into a String */
public static String
string(int i) {
	return extflags.getText(i);
}

/**
 * Converts a textual representation of an extended flag into its numeric
 * value
 */
public static int
value(String s) {
	return extflags.getValue(s);
}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy