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

com.belerweb.social.qq.connect.bean.Gut Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.belerweb.social.qq.connect.bean;

/**
 * QQ登录页面版本
 */
public enum Gut {

  WML(1),

  XHTML(2);

  private int value;

  private Gut(int value) {
    this.value = value;
  }

  public int value() {
    return value;
  }

  @Override
  public String toString() {
    return String.valueOf(value);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy