Skip to content

Commit

Permalink
Runtime: Regenerate primitive fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Forslund committed Aug 9, 2016
1 parent e28a4c8 commit 391d392
Show file tree
Hide file tree
Showing 128 changed files with 130 additions and 130 deletions.
Expand Up @@ -20,12 +20,12 @@ public final class SimpleParameterizedType implements ParameterizedType {
* Creates a new {@code SimpleParameterizedType} based on the class name of * Creates a new {@code SimpleParameterizedType} based on the class name of
* the specified class and the specified parameters. * the specified class and the specified parameters.
* *
* @param clazz the class to get the name from * @param mainType the class to get the name from
* @param parameters list of generic parameters to this type * @param parameters list of generic parameters to this type
* @return the created type * @return the created type
*/ */
public static SimpleParameterizedType create(Class<?> clazz, Type... parameters) { public static SimpleParameterizedType create(Type mainType, Type... parameters) {
return create(clazz.getName(), parameters); return create(mainType.getTypeName(), parameters);
} }


/** /**
Expand Down
Expand Up @@ -15,7 +15,7 @@
* @see ReferenceField * @see ReferenceField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface BooleanField<ENTITY, D> extends Field<ENTITY>, HasBooleanValue<ENTITY, D> { public interface BooleanField<ENTITY, D> extends Field<ENTITY>, HasBooleanValue<ENTITY, D> {




} }
Expand Up @@ -18,7 +18,7 @@
* @see ReferenceForeignKeyField * @see ReferenceForeignKeyField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface BooleanForeignKeyField<ENTITY, D, FK_ENTITY> extends BooleanField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> { public interface BooleanForeignKeyField<ENTITY, D, FK_ENTITY> extends BooleanField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> {




} }
Expand Up @@ -16,7 +16,7 @@
* @see ReferenceField * @see ReferenceField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface ByteField<ENTITY, D> extends Field<ENTITY>, HasByteValue<ENTITY, D>, HasComparableOperators<ENTITY, Byte> { public interface ByteField<ENTITY, D> extends Field<ENTITY>, HasByteValue<ENTITY, D>, HasComparableOperators<ENTITY, Byte> {




} }
Expand Up @@ -18,7 +18,7 @@
* @see ReferenceForeignKeyField * @see ReferenceForeignKeyField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface ByteForeignKeyField<ENTITY, D, FK_ENTITY> extends ByteField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> { public interface ByteForeignKeyField<ENTITY, D, FK_ENTITY> extends ByteField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> {




} }
Expand Up @@ -16,7 +16,7 @@
* @see ReferenceField * @see ReferenceField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface CharField<ENTITY, D> extends Field<ENTITY>, HasCharValue<ENTITY, D>, HasComparableOperators<ENTITY, Character> { public interface CharField<ENTITY, D> extends Field<ENTITY>, HasCharValue<ENTITY, D>, HasComparableOperators<ENTITY, Character> {




} }
Expand Up @@ -18,7 +18,7 @@
* @see ReferenceForeignKeyField * @see ReferenceForeignKeyField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface CharForeignKeyField<ENTITY, D, FK_ENTITY> extends CharField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> { public interface CharForeignKeyField<ENTITY, D, FK_ENTITY> extends CharField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> {




} }
Expand Up @@ -16,7 +16,7 @@
* @see ReferenceField * @see ReferenceField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface DoubleField<ENTITY, D> extends Field<ENTITY>, HasDoubleValue<ENTITY, D>, HasComparableOperators<ENTITY, Double> { public interface DoubleField<ENTITY, D> extends Field<ENTITY>, HasDoubleValue<ENTITY, D>, HasComparableOperators<ENTITY, Double> {




} }
Expand Up @@ -18,7 +18,7 @@
* @see ReferenceForeignKeyField * @see ReferenceForeignKeyField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface DoubleForeignKeyField<ENTITY, D, FK_ENTITY> extends DoubleField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> { public interface DoubleForeignKeyField<ENTITY, D, FK_ENTITY> extends DoubleField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> {




} }
Expand Up @@ -16,7 +16,7 @@
* @see ReferenceField * @see ReferenceField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface FloatField<ENTITY, D> extends Field<ENTITY>, HasFloatValue<ENTITY, D>, HasComparableOperators<ENTITY, Float> { public interface FloatField<ENTITY, D> extends Field<ENTITY>, HasFloatValue<ENTITY, D>, HasComparableOperators<ENTITY, Float> {




} }
Expand Up @@ -18,7 +18,7 @@
* @see ReferenceForeignKeyField * @see ReferenceForeignKeyField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface FloatForeignKeyField<ENTITY, D, FK_ENTITY> extends FloatField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> { public interface FloatForeignKeyField<ENTITY, D, FK_ENTITY> extends FloatField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> {




} }
Expand Up @@ -16,7 +16,7 @@
* @see ReferenceField * @see ReferenceField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface IntField<ENTITY, D> extends Field<ENTITY>, HasIntValue<ENTITY, D>, HasComparableOperators<ENTITY, Integer> { public interface IntField<ENTITY, D> extends Field<ENTITY>, HasIntValue<ENTITY, D>, HasComparableOperators<ENTITY, Integer> {




} }
Expand Up @@ -18,7 +18,7 @@
* @see ReferenceForeignKeyField * @see ReferenceForeignKeyField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface IntForeignKeyField<ENTITY, D, FK_ENTITY> extends IntField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> { public interface IntForeignKeyField<ENTITY, D, FK_ENTITY> extends IntField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> {




} }
Expand Up @@ -16,7 +16,7 @@
* @see ReferenceField * @see ReferenceField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface LongField<ENTITY, D> extends Field<ENTITY>, HasLongValue<ENTITY, D>, HasComparableOperators<ENTITY, Long> { public interface LongField<ENTITY, D> extends Field<ENTITY>, HasLongValue<ENTITY, D>, HasComparableOperators<ENTITY, Long> {




} }
Expand Up @@ -18,7 +18,7 @@
* @see ReferenceForeignKeyField * @see ReferenceForeignKeyField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface LongForeignKeyField<ENTITY, D, FK_ENTITY> extends LongField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> { public interface LongForeignKeyField<ENTITY, D, FK_ENTITY> extends LongField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> {




} }
Expand Up @@ -16,7 +16,7 @@
* @see ReferenceField * @see ReferenceField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface ShortField<ENTITY, D> extends Field<ENTITY>, HasShortValue<ENTITY, D>, HasComparableOperators<ENTITY, Short> { public interface ShortField<ENTITY, D> extends Field<ENTITY>, HasShortValue<ENTITY, D>, HasComparableOperators<ENTITY, Short> {




} }
Expand Up @@ -18,7 +18,7 @@
* @see ReferenceForeignKeyField * @see ReferenceForeignKeyField
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface ShortForeignKeyField<ENTITY, D, FK_ENTITY> extends ShortField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> { public interface ShortForeignKeyField<ENTITY, D, FK_ENTITY> extends ShortField<ENTITY, D>, HasFinder<ENTITY, FK_ENTITY> {




} }
Expand Up @@ -20,7 +20,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface BooleanGetter<ENTITY> extends Getter<ENTITY> { public interface BooleanGetter<ENTITY> extends Getter<ENTITY> {


/** /**
* Returns the member represented by this getter in the specified instance. * Returns the member represented by this getter in the specified instance.
Expand Down
Expand Up @@ -21,7 +21,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface BooleanSetter<ENTITY> extends Setter<ENTITY> { public interface BooleanSetter<ENTITY> extends Setter<ENTITY> {


/** /**
* Sets the member represented by this setter in the specified instance to * Sets the member represented by this setter in the specified instance to
Expand Down
Expand Up @@ -20,7 +20,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface ByteGetter<ENTITY> extends Getter<ENTITY> { public interface ByteGetter<ENTITY> extends Getter<ENTITY> {


/** /**
* Returns the member represented by this getter in the specified instance. * Returns the member represented by this getter in the specified instance.
Expand Down
Expand Up @@ -21,7 +21,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface ByteSetter<ENTITY> extends Setter<ENTITY> { public interface ByteSetter<ENTITY> extends Setter<ENTITY> {


/** /**
* Sets the member represented by this setter in the specified instance to * Sets the member represented by this setter in the specified instance to
Expand Down
Expand Up @@ -20,7 +20,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface CharGetter<ENTITY> extends Getter<ENTITY> { public interface CharGetter<ENTITY> extends Getter<ENTITY> {


/** /**
* Returns the member represented by this getter in the specified instance. * Returns the member represented by this getter in the specified instance.
Expand Down
Expand Up @@ -21,7 +21,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface CharSetter<ENTITY> extends Setter<ENTITY> { public interface CharSetter<ENTITY> extends Setter<ENTITY> {


/** /**
* Sets the member represented by this setter in the specified instance to * Sets the member represented by this setter in the specified instance to
Expand Down
Expand Up @@ -20,7 +20,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface DoubleGetter<ENTITY> extends Getter<ENTITY> { public interface DoubleGetter<ENTITY> extends Getter<ENTITY> {


/** /**
* Returns the member represented by this getter in the specified instance. * Returns the member represented by this getter in the specified instance.
Expand Down
Expand Up @@ -21,7 +21,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface DoubleSetter<ENTITY> extends Setter<ENTITY> { public interface DoubleSetter<ENTITY> extends Setter<ENTITY> {


/** /**
* Sets the member represented by this setter in the specified instance to * Sets the member represented by this setter in the specified instance to
Expand Down
Expand Up @@ -20,7 +20,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface FloatGetter<ENTITY> extends Getter<ENTITY> { public interface FloatGetter<ENTITY> extends Getter<ENTITY> {


/** /**
* Returns the member represented by this getter in the specified instance. * Returns the member represented by this getter in the specified instance.
Expand Down
Expand Up @@ -21,7 +21,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface FloatSetter<ENTITY> extends Setter<ENTITY> { public interface FloatSetter<ENTITY> extends Setter<ENTITY> {


/** /**
* Sets the member represented by this setter in the specified instance to * Sets the member represented by this setter in the specified instance to
Expand Down
Expand Up @@ -20,7 +20,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface IntGetter<ENTITY> extends Getter<ENTITY> { public interface IntGetter<ENTITY> extends Getter<ENTITY> {


/** /**
* Returns the member represented by this getter in the specified instance. * Returns the member represented by this getter in the specified instance.
Expand Down
Expand Up @@ -21,7 +21,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface IntSetter<ENTITY> extends Setter<ENTITY> { public interface IntSetter<ENTITY> extends Setter<ENTITY> {


/** /**
* Sets the member represented by this setter in the specified instance to * Sets the member represented by this setter in the specified instance to
Expand Down
Expand Up @@ -20,7 +20,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface LongGetter<ENTITY> extends Getter<ENTITY> { public interface LongGetter<ENTITY> extends Getter<ENTITY> {


/** /**
* Returns the member represented by this getter in the specified instance. * Returns the member represented by this getter in the specified instance.
Expand Down
Expand Up @@ -21,7 +21,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface LongSetter<ENTITY> extends Setter<ENTITY> { public interface LongSetter<ENTITY> extends Setter<ENTITY> {


/** /**
* Sets the member represented by this setter in the specified instance to * Sets the member represented by this setter in the specified instance to
Expand Down
Expand Up @@ -14,7 +14,7 @@
* @since 3.0.0 * @since 3.0.0
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface SetToBoolean<ENTITY, D> extends UnaryOperator<ENTITY> { public interface SetToBoolean<ENTITY, D> extends UnaryOperator<ENTITY> {


/** /**
* Returns the field that this setter sets. * Returns the field that this setter sets.
Expand Down
Expand Up @@ -14,7 +14,7 @@
* @since 3.0.0 * @since 3.0.0
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface SetToByte<ENTITY, D> extends UnaryOperator<ENTITY> { public interface SetToByte<ENTITY, D> extends UnaryOperator<ENTITY> {


/** /**
* Returns the field that this setter sets. * Returns the field that this setter sets.
Expand Down
Expand Up @@ -14,7 +14,7 @@
* @since 3.0.0 * @since 3.0.0
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface SetToChar<ENTITY, D> extends UnaryOperator<ENTITY> { public interface SetToChar<ENTITY, D> extends UnaryOperator<ENTITY> {


/** /**
* Returns the field that this setter sets. * Returns the field that this setter sets.
Expand Down
Expand Up @@ -14,7 +14,7 @@
* @since 3.0.0 * @since 3.0.0
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface SetToDouble<ENTITY, D> extends UnaryOperator<ENTITY> { public interface SetToDouble<ENTITY, D> extends UnaryOperator<ENTITY> {


/** /**
* Returns the field that this setter sets. * Returns the field that this setter sets.
Expand Down
Expand Up @@ -14,7 +14,7 @@
* @since 3.0.0 * @since 3.0.0
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface SetToFloat<ENTITY, D> extends UnaryOperator<ENTITY> { public interface SetToFloat<ENTITY, D> extends UnaryOperator<ENTITY> {


/** /**
* Returns the field that this setter sets. * Returns the field that this setter sets.
Expand Down
Expand Up @@ -14,7 +14,7 @@
* @since 3.0.0 * @since 3.0.0
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface SetToInt<ENTITY, D> extends UnaryOperator<ENTITY> { public interface SetToInt<ENTITY, D> extends UnaryOperator<ENTITY> {


/** /**
* Returns the field that this setter sets. * Returns the field that this setter sets.
Expand Down
Expand Up @@ -14,7 +14,7 @@
* @since 3.0.0 * @since 3.0.0
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface SetToLong<ENTITY, D> extends UnaryOperator<ENTITY> { public interface SetToLong<ENTITY, D> extends UnaryOperator<ENTITY> {


/** /**
* Returns the field that this setter sets. * Returns the field that this setter sets.
Expand Down
Expand Up @@ -14,7 +14,7 @@
* @since 3.0.0 * @since 3.0.0
*/ */
@Api(version = "3.0") @Api(version = "3.0")
public interface SetToShort<ENTITY, D> extends UnaryOperator<ENTITY> { public interface SetToShort<ENTITY, D> extends UnaryOperator<ENTITY> {


/** /**
* Returns the field that this setter sets. * Returns the field that this setter sets.
Expand Down
Expand Up @@ -20,7 +20,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface ShortGetter<ENTITY> extends Getter<ENTITY> { public interface ShortGetter<ENTITY> extends Getter<ENTITY> {


/** /**
* Returns the member represented by this getter in the specified instance. * Returns the member represented by this getter in the specified instance.
Expand Down
Expand Up @@ -21,7 +21,7 @@
*/ */
@Api(version = "3.0") @Api(version = "3.0")
@FunctionalInterface @FunctionalInterface
public interface ShortSetter<ENTITY> extends Setter<ENTITY> { public interface ShortSetter<ENTITY> extends Setter<ENTITY> {


/** /**
* Sets the member represented by this setter in the specified instance to * Sets the member represented by this setter in the specified instance to
Expand Down

0 comments on commit 391d392

Please sign in to comment.