Package fpdu.FPDU

Examples of fpdu.FPDU.EnumFPDU


   * Method to get the EnumFPDU type from a String
   * @param sType The wanted type as a String
   * @return The corresponding EnumPFDU
   */
  public EnumFPDU getRightType(String sType) {
    EnumFPDU rightType = null;
    sType = sType.toUpperCase();
    if (sType.equals("CONNECT")) {
      rightType = EnumFPDU.CONNECT;
    } else if (sType.equals("ACONNECT")) {
      rightType = EnumFPDU.ACONNECT;
View Full Code Here

TOP

Related Classes of fpdu.FPDU.EnumFPDU

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.