Android Open Source - PocketSAX Property Type






From Project

Back to project page PocketSAX.

License

The source code is released under:

Apache License

If you think the Android project PocketSAX listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.alostpacket.pocketsax;
/*from www  .j  a v a  2s  . c  o  m*/
//TODO make this an enum
public class PropertyType
{
  public static final String INT         = "i";
  public static final String STRING       = "s";
  public static final String FLOAT       = "f";
  public static final String LONG         = "l";
  public static final String DOUBLE       = "d";
  public static final String BOOLEAN       = "b";
  public static final String ENUM         = "e";
  public static final String TRANSIENT     = "transient";

}




Java Source Code List

com.alostpacket.pocketsax.ExampleNode.java
com.alostpacket.pocketsax.LoadXMLThread.java
com.alostpacket.pocketsax.PropertyType.java
com.alostpacket.pocketsax.XMLtoObjectParser.java