home *** CD-ROM | disk | FTP | other *** search
- package org.xbill.DNS;
-
- public final class ExtendedFlags {
- private static Mnemonic extflags = new Mnemonic("EDNS Flag", 3);
- // $FF: renamed from: DO int
- public static final int field_0 = 32768;
-
- static {
- extflags.setMaximum(65535);
- extflags.setPrefix("FLAG");
- extflags.setNumericAllowed(true);
- extflags.add(32768, "do");
- }
-
- private ExtendedFlags() {
- }
-
- public static String string(int i) {
- return extflags.getText(i);
- }
-
- public static int value(String s) {
- return extflags.getValue(s);
- }
- }
-