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

org.pcap4j.packet.LengthBuilder Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha.6
Show newest version
/*_##########################################################################
  _##
  _##  Copyright (C) 2012 Pcap4J.org
  _##
  _##########################################################################
*/

package org.pcap4j.packet;

/**
 * @author Kaito Yamada
 * @since pcap4j 0.9.11
 * @param  tye type of object this builder builds.
 */
public interface LengthBuilder {

  /**
   * @param correctLengthAtBuild correctLengthAtBuild
   * @return LengthBuilder
   */
  public LengthBuilder correctLengthAtBuild(boolean correctLengthAtBuild);

  /** @return a new object. */
  public T build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy