Java tutorial
package com.fasterxml.jackson.annotation; import java.lang.annotation.Annotation; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target({ java.lang.annotation.ElementType.ANNOTATION_TYPE, java.lang.annotation.ElementType.METHOD, java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.TYPE, java.lang.annotation.ElementType.PARAMETER }) public @interface JsonInclude { public abstract Include value(); public static enum Include { static { NON_DEFAULT = new Include("NON_DEFAULT", 2); NON_EMPTY = new Include("NON_EMPTY", 3); Include[] arrayOfInclude = new Include[4]; arrayOfInclude[0] = ALWAYS; arrayOfInclude[1] = NON_NULL; arrayOfInclude[2] = NON_DEFAULT; arrayOfInclude[3] = NON_EMPTY; } } } /* Location: /Users/dantheman/src/fffffffffattttt/basis/classes_dex2jar.jar * Qualified Name: com.fasterxml.jackson.annotation.JsonInclude * JD-Core Version: 0.6.2 */