Java IRC bot
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TokenTypeArity.java 243B

12345678910111213141516171819
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package com.dmdirc.addons.calc;
  6. /**
  7. *
  8. * @author chris
  9. */
  10. public enum TokenTypeArity {
  11. HIDDEN,
  12. NULLARY,
  13. UNARY,
  14. BINARY;
  15. }