-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from GoodforGod/dev
[3.2.0]
- Loading branch information
Showing
26 changed files
with
611 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
20 changes: 20 additions & 0 deletions
20
src/main/java/io/dummymaker/annotation/simple/number/GenPrice.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.dummymaker.annotation.simple.number; | ||
|
||
import io.dummymaker.annotation.core.PrimeGen; | ||
import io.dummymaker.generator.simple.number.PriceGenerator; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* @author Anton Kurako (GoodforGod) | ||
* @see PriceGenerator | ||
* @since 26.08.2022 | ||
*/ | ||
@PrimeGen(PriceGenerator.class) | ||
@Retention(value = RetentionPolicy.RUNTIME) | ||
@Target(ElementType.FIELD) | ||
public @interface GenPrice { | ||
|
||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/io/dummymaker/annotation/simple/string/GenCategory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.dummymaker.annotation.simple.string; | ||
|
||
import io.dummymaker.annotation.core.PrimeGen; | ||
import io.dummymaker.generator.simple.string.CategoryGenerator; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* @author Anton Kurako (GoodforGod) | ||
* @see CategoryGenerator | ||
* @since 26.08.2022 | ||
*/ | ||
@PrimeGen(CategoryGenerator.class) | ||
@Retention(value = RetentionPolicy.RUNTIME) | ||
@Target(ElementType.FIELD) | ||
public @interface GenCategory { | ||
|
||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/io/dummymaker/annotation/simple/string/GenCurrency.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.dummymaker.annotation.simple.string; | ||
|
||
import io.dummymaker.annotation.core.PrimeGen; | ||
import io.dummymaker.generator.simple.string.CurrencyGenerator; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* @author Anton Kurako (GoodforGod) | ||
* @see CurrencyGenerator | ||
* @since 26.08.2022 | ||
*/ | ||
@PrimeGen(CurrencyGenerator.class) | ||
@Retention(value = RetentionPolicy.RUNTIME) | ||
@Target(ElementType.FIELD) | ||
public @interface GenCurrency { | ||
|
||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/io/dummymaker/annotation/simple/string/GenFrequency.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.dummymaker.annotation.simple.string; | ||
|
||
import io.dummymaker.annotation.core.PrimeGen; | ||
import io.dummymaker.generator.simple.string.FrequencyGenerator; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* @author Anton Kurako (GoodforGod) | ||
* @see FrequencyGenerator | ||
* @since 26.08.2022 | ||
*/ | ||
@PrimeGen(FrequencyGenerator.class) | ||
@Retention(value = RetentionPolicy.RUNTIME) | ||
@Target(ElementType.FIELD) | ||
public @interface GenFrequency { | ||
|
||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/io/dummymaker/annotation/simple/string/GenMerchant.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.dummymaker.annotation.simple.string; | ||
|
||
import io.dummymaker.annotation.core.PrimeGen; | ||
import io.dummymaker.generator.simple.string.MerchantGenerator; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* @author Anton Kurako (GoodforGod) | ||
* @see MerchantGenerator | ||
* @since 26.08.2022 | ||
*/ | ||
@PrimeGen(MerchantGenerator.class) | ||
@Retention(value = RetentionPolicy.RUNTIME) | ||
@Target(ElementType.FIELD) | ||
public @interface GenMerchant { | ||
|
||
} |
58 changes: 58 additions & 0 deletions
58
src/main/java/io/dummymaker/bundle/impl/CategoryBundle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
package io.dummymaker.bundle.impl; | ||
|
||
/** | ||
* @author Anton Kurako (GoodforGod) | ||
* @since 25.08.2022 | ||
*/ | ||
public class CategoryBundle extends BasicBundle { | ||
|
||
public CategoryBundle() { | ||
super("Appliances", | ||
"Apps", | ||
"Games", | ||
"Arts", | ||
"Crafts", | ||
"Sewing", | ||
"Automotive Parts", | ||
"Baby", | ||
"Beauty", | ||
"Personal Care", | ||
"Books", | ||
"CDs", | ||
"Vinyl", | ||
"Cell Phones", | ||
"Accessories", | ||
"Clothing", | ||
"Shoes", | ||
"Jewelry", | ||
"Collectibles", | ||
"Fine Art", | ||
"Computers", | ||
"Electronics", | ||
"Garden", | ||
"Outdoor", | ||
"Grocery", | ||
"Gourmet Food", | ||
"Handmade", | ||
"Health", | ||
"Household", | ||
"Baby Care", | ||
"Kitchen", | ||
"Industrial", | ||
"Scientific", | ||
"Kindle", | ||
"Luggage", | ||
"Travel Gear", | ||
"Movies", | ||
"TV", | ||
"Musical Instruments", | ||
"Office Products", | ||
"Pet Supplies", | ||
"Sports", | ||
"Outdoors", | ||
"Tools", | ||
"Home Improvement", | ||
"Toys", | ||
"Video Games"); | ||
} | ||
} |
120 changes: 120 additions & 0 deletions
120
src/main/java/io/dummymaker/bundle/impl/CurrencyBundle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
package io.dummymaker.bundle.impl; | ||
|
||
/** | ||
* @author Anton Kurako (GoodforGod) | ||
* @since 25.08.2022 | ||
*/ | ||
public class CurrencyBundle extends BasicBundle { | ||
|
||
public CurrencyBundle() { | ||
super("ALL", | ||
"AFN", | ||
"ARS", | ||
"AWG", | ||
"AUD", | ||
"AZN", | ||
"BSD", | ||
"BBD", | ||
"BYN", | ||
"BZD", | ||
"BMD", | ||
"BOB", | ||
"BAM", | ||
"BWP", | ||
"BGN", | ||
"BRL", | ||
"BND", | ||
"KHR", | ||
"CAD", | ||
"KYD", | ||
"CLP", | ||
"CNY", | ||
"COP", | ||
"CRC", | ||
"HRK", | ||
"CUP", | ||
"CZK", | ||
"DKK", | ||
"DOP", | ||
"XCD", | ||
"EGP", | ||
"SVC", | ||
"EUR", | ||
"FKP", | ||
"FJD", | ||
"GHS", | ||
"GIP", | ||
"GTQ", | ||
"GGP", | ||
"GYD", | ||
"HNL", | ||
"HKD", | ||
"HUF", | ||
"ISK", | ||
"INR", | ||
"IDR", | ||
"IRR", | ||
"IMP", | ||
"ILS", | ||
"JMD", | ||
"JPY", | ||
"JEP", | ||
"KZT", | ||
"KPW", | ||
"KRW", | ||
"KGS", | ||
"LAK", | ||
"LBP", | ||
"LRD", | ||
"MKD", | ||
"MYR", | ||
"MUR", | ||
"MXN", | ||
"MNT", | ||
"MZN", | ||
"NAD", | ||
"NPR", | ||
"ANG", | ||
"NZD", | ||
"NIO", | ||
"NGN", | ||
"NOK", | ||
"OMR", | ||
"PKR", | ||
"PAB", | ||
"PYG", | ||
"PEN", | ||
"PHP", | ||
"PLN", | ||
"QAR", | ||
"RON", | ||
"RUB", | ||
"SHP", | ||
"SAR", | ||
"RSD", | ||
"SCR", | ||
"SGD", | ||
"SBD", | ||
"SOS", | ||
"ZAR", | ||
"LKR", | ||
"SEK", | ||
"CHF", | ||
"SRD", | ||
"SYP", | ||
"TWD", | ||
"THB", | ||
"TTD", | ||
"TRY", | ||
"TVD", | ||
"UAH", | ||
"GBP", | ||
"USD", | ||
"UYU", | ||
"UZS", | ||
"VEF", | ||
"VND", | ||
"YER", | ||
"ZWD"); | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/java/io/dummymaker/bundle/impl/FrequencyBundle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package io.dummymaker.bundle.impl; | ||
|
||
/** | ||
* @author Anton Kurako (GoodforGod) | ||
* @since 25.08.2022 | ||
*/ | ||
public class FrequencyBundle extends BasicBundle { | ||
|
||
public FrequencyBundle() { | ||
super("SECONDLY", | ||
"MINUTELY", | ||
"HOURLY", | ||
"DAILY", | ||
"WEEKLY", | ||
"MONTHLY", | ||
"YEARLY"); | ||
} | ||
} |
Oops, something went wrong.