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

com.ociweb.pronghorn.network.config.HTTPRevision Maven / Gradle / Ivy

There is a newer version: 1.0.43
Show newest version
package com.ociweb.pronghorn.network.config;

public interface HTTPRevision {
    
	static final int BITS = 4;//max of 16 supported
	static final int MASK = (1<<4)-1;
	
	int ordinal();
    CharSequence getKey(); 
    byte[] getBytes();
    
   
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy