-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fatih Aydın
committed
Jan 19, 2023
0 parents
commit 8624b91
Showing
13 changed files
with
945 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Files and directories created by pub. | ||
.dart_tool/ | ||
.packages | ||
.idea | ||
|
||
# Conventional directory for build outputs. | ||
build/ | ||
|
||
# Omit committing pubspec.lock for library packages; see | ||
# https://dart.dev/guides/libraries/private-files#pubspeclock. | ||
pubspec.lock |
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,3 @@ | ||
## 1.0.0 | ||
|
||
- Initial version. |
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,29 @@ | ||
BSD 3-Clause License | ||
|
||
Copyright (c) 2023, Fatih AYDIN | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
1 |
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,260 @@ | ||
# enum_plus | ||
|
||
[![platform](https://img.shields.io/badge/Platform-Flutter-02569B?logo=flutter)](https://flutter.dev) | ||
[![platform](https://img.shields.io/badge/Platform-Dart-02569B?logo=dart)](https://dart.dev) | ||
[![pub package](https://img.shields.io/pub/v/enum_plus.svg?label=enum_plus&color=02569B)](https://pub.dev/packages/pipeline_plus) | ||
[![license](https://img.shields.io/github/license/aydinfatih/enum_plus?color=02569B)](https://opensource.org/licenses/BSD-3-Clause) | ||
|
||
Simple, extensible and powerful enumeration implementation | ||
|
||
## Usage | ||
|
||
You must include EnumPlus in your Enum. If you are using <a href="https://dart.dev/guides/language/language-tour#declaring-enhanced-enums" target="_blank">enhanced enum</a>. You should return your own value by overriding the toValue method. | ||
|
||
```dart | ||
import 'package:enum_plus/enum_plus.dart'; | ||
enum Animal with EnumPlus { | ||
DOG(0), | ||
CAT(1), | ||
HONEY_BEE(2); | ||
const Animal(this.value); | ||
final int value; | ||
@override | ||
dynamic toValue() => value; | ||
} | ||
``` | ||
## Enum Methods | ||
- [Enum Methods](#enum-methods) | ||
- [equal()](#equal) | ||
- [notEqual()](#notequal) | ||
- [inside()](#inside) | ||
- [outside()](#outside) | ||
- [getFriendlyName()](#getfriendlyname) | ||
- [Enum List Methods](#enum-list-methods) | ||
- [hasName()](#hasname) | ||
- [hasFriendlyName()](#hasfriendlyname) | ||
- [getNames()](#getnames) | ||
- [getName()](#getname) | ||
- [getNamesExcept()](#getnamesexcept) | ||
- [getFriendlyNames()](#getfriendlynames) | ||
- [getFriendlyNamesExcept()](#getfriendlynamesexcept) | ||
- [fromNames()](#fromnames) | ||
- [fromFriendlyNames()](#fromfriendlynames) | ||
- [fromName()](#fromname) | ||
- [fromFriendlyName()](#fromfriendlyname) | ||
- [toListExcept()](#tolistexcept) | ||
- [getRandom()](#getrandom) | ||
- [getRandomName()](#getrandomname) | ||
- [getRandomFriendlyName()](#getrandomfriendlyname) | ||
- [hasValue()](#hasvalue) | ||
- [getValues()](#getvalues) | ||
- [getValue()](#getvalue) | ||
- [getValuesExcept()](#getvaluesexcept) | ||
- [fromValue()](#fromvalue) | ||
- [fromValues()](#fromvalues) | ||
- [coerce()](#coerce) | ||
- [getRandomValue()](#getrandomvalue) | ||
___ | ||
### equal | ||
Checks if this instance is equal to the given enum instance or value. | ||
```dart | ||
print(Animal.DOG.equal(Animal.DOG)); // true | ||
print(Animal.DOG.equal(0)); // true | ||
print(Animal.DOG.equal(Animal.CAT)); // false | ||
print(Animal.DOG.equal(1)); // false | ||
``` | ||
___ | ||
### notEqual | ||
Checks if this instance is not equal to the given enum instance or value. | ||
```dart | ||
print(Animal.DOG.notEqual(Animal.CAT)); // true | ||
print(Animal.DOG.notEqual(1)); // true | ||
print(Animal.DOG.notEqual(Animal.DOG)); // false | ||
print(Animal.DOG.notEqual(0)); // false | ||
``` | ||
___ | ||
### inside | ||
Checks if a matching enum instance or value is in the given values. | ||
```dart | ||
print(Animal.DOG.inside([Animal.DOG, Animal.CAT])); // true | ||
print(Animal.DOG.inside([0, 1])); // true | ||
print(Animal.DOG.inside([Animal.HONEY_BEE, Animal.CAT])); // false | ||
print(Animal.DOG.inside([1, 2])); // false | ||
``` | ||
___ | ||
### outside | ||
Checks if a matching enum instance or value is not in the given values. | ||
```dart | ||
print(Animal.DOG.outside([Animal.HONEY_BEE, Animal.CAT])); // true | ||
print(Animal.DOG.outside([1, 2])); // true | ||
print(Animal.DOG.outside([Animal.DOG, Animal.CAT])); // false | ||
print(Animal.DOG.outside([0, 1])); // false | ||
``` | ||
___ | ||
### getFriendlyName | ||
Transform the name into a friendly, formatted version. | ||
```dart | ||
print(Animal.HONEY_BEE.getFriendlyName()); // Honey Bee | ||
``` | ||
|
||
## Enum List Methods | ||
### hasName | ||
Check that the enum contains a specific name. | ||
```dart | ||
print(Animal.values.hasName('DOG')); // true | ||
print(Animal.values.hasName('FISH')); // false | ||
``` | ||
___ | ||
### hasFriendlyName | ||
Check that the enum contains a specific friendly name. | ||
```dart | ||
print(Animal.values.hasFriendlyName('Honey Bee')); // true | ||
print(Animal.values.hasFriendlyName('Dog')); // true | ||
print(Animal.values.hasFriendlyName('Fish')); // false | ||
``` | ||
___ | ||
### getNames | ||
Get all or a custom set of the enum names. | ||
```dart | ||
print(Animal.values.getNames()); // [DOG, CAT, HONEY_BEE] | ||
print(Animal.values.getNames(values: [0, Animal.CAT])); // [DOG, CAT] | ||
``` | ||
___ | ||
### getName | ||
Get the name for a single enum value. | ||
```dart | ||
print(Animal.values.getName(1)); // CAT | ||
print(Animal.values.getName(100)); //Bad state: No element | ||
``` | ||
___ | ||
### getNamesExcept | ||
Return names of all the enums except the given values. | ||
```dart | ||
print(Animal.values.getNamesExcept([0, Animal.HONEY_BEE])); // [CAT] | ||
``` | ||
___ | ||
### getFriendlyNames | ||
Get all or a custom set of the enum friendly names. | ||
```dart | ||
print(Animal.values.getFriendlyNames()); // [Dog, Cat, Honey Bee] | ||
print(Animal.values.getFriendlyNames(values: [0, Animal.HONEY_BEE])); // [Dog, Honey Bee] | ||
``` | ||
___ | ||
### getFriendlyNamesExcept | ||
Return friendly names of all the enums except the given values. | ||
```dart | ||
print(Animal.values.getFriendlyNamesExcept([Animal.DOG, 1])); // [Honey Bee] | ||
``` | ||
___ | ||
### fromNames | ||
Get enums from names. | ||
```dart | ||
print(Animal.values.fromNames(['DOG', 'CAT'])); // [Animal.DOG, Animal.CAT] | ||
print(Animal.values.fromNames(['CAT', 'FISH'])); // Bad state: No element | ||
``` | ||
___ | ||
### fromFriendlyNames | ||
Get enums from friendly names. | ||
```dart | ||
print(Animal.values.fromFriendlyNames(['Honey Bee', 'Cat'])); // [Animal.HONEY_BEE, Animal.CAT] | ||
print(Animal.values.fromFriendlyNames(['Honey Bee', 'Fish'])); // Bad state: No element | ||
``` | ||
___ | ||
### fromName | ||
Make an enum instance from a given key. | ||
```dart | ||
print(Animal.values.fromName('DOG')); // Animal.DOG | ||
print(Animal.values.fromName('FISH')); // Bad state: No element | ||
``` | ||
___ | ||
### fromFriendlyName | ||
Make an enum instance from a given friendly name. | ||
```dart | ||
print(Animal.values.fromFriendlyName('Honey Bee')); // Animal.HONEY_BEE | ||
print(Animal.values.fromFriendlyName('Fish')); // Bad state: No element | ||
``` | ||
___ | ||
### toListExcept | ||
Return instances of all the enums except the given values. | ||
```dart | ||
print(Animal.values.toListExcept([Animal.DOG, 1])); // [Animal.HONEY_BEE] | ||
``` | ||
___ | ||
### getRandom | ||
Get a random instance of the enum. | ||
```dart | ||
print(Animal.values.getRandom()); // Animal.HONEY_BEE | ||
``` | ||
___ | ||
### getRandomName | ||
Get a random name of the enum. | ||
```dart | ||
print(Animal.values.getRandomName()); // DOG | ||
``` | ||
___ | ||
### getRandomFriendlyName | ||
Get a random friendly name of the enum. | ||
```dart | ||
print(Animal.values.getRandomFriendlyName()); // Cat | ||
``` | ||
___ | ||
### hasValue | ||
Check that the enum contains a specific value. | ||
```dart | ||
print(Animal.values.hasValue(1)); // true | ||
print(Animal.values.hasValue(Animal.CAT)); // true | ||
print(Animal.values.hasValue(100)); // false | ||
``` | ||
___ | ||
### getValues | ||
Get all or a custom set of the enum values. | ||
```dart | ||
print(Animal.values.getValues()); // [0, 1, 2] | ||
print(Animal.values.getValues(names: ['DOG'])); // [0] | ||
``` | ||
___ | ||
### getValue | ||
Get the value for a single enum key. | ||
```dart | ||
print(Animal.values.getValue('DOG')); // 0 | ||
print(Animal.values.getValue('FISH')); // Bad state: No element | ||
``` | ||
___ | ||
### getValuesExcept | ||
Return values of all the enums except the given values. | ||
```dart | ||
print(Animal.values.getValuesExcept([Animal.DOG, 1])); // [2] | ||
``` | ||
___ | ||
### fromValue | ||
Make a new instance from an enum value. | ||
```dart | ||
print(Animal.values.fromValue(1)); // Animal.CAT | ||
print(Animal.values.fromValue(Animal.CAT)); // Animal.CAT | ||
print(Animal.values.fromValue(100)); // Bad state: No element | ||
``` | ||
___ | ||
### fromValues | ||
Return instances from enum values. | ||
```dart | ||
print(Animal.values.fromValues([0, Animal.CAT])); // [Animal.DOG, Animal.CAT] | ||
``` | ||
___ | ||
### coerce | ||
Attempt to instantiate a new Enum using the given key or value. | ||
```dart | ||
print(Animal.values.coerce(1)); // Animal.CAT | ||
print(Animal.values.coerce('CAT')); // Animal.CAT | ||
print(Animal.values.coerce(100)); // null | ||
print(Animal.values.coerce('FISH')); // null | ||
``` | ||
___ | ||
### getRandomValue | ||
Get a random value of the enum. | ||
```dart | ||
print(Animal.values.getRandomValue()); // 1 | ||
``` |
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,19 @@ | ||
# Defines a default set of lint rules enforced for projects at Google. For | ||
# details and rationale, see | ||
# https://github.com/dart-lang/pedantic#enabled-lints. | ||
|
||
include: package:pedantic/analysis_options.yaml | ||
|
||
# For lint rules and documentation, see http://dart-lang.github.io/linter/lints. | ||
|
||
# Uncomment to specify additional rules. | ||
# linter: | ||
# rules: | ||
# - camel_case_types | ||
|
||
# analyzer: | ||
# exclude: | ||
# - path/to/excluded/files/** | ||
analyzer: | ||
errors: | ||
omit_local_variable_types: ignore |
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,14 @@ | ||
import 'package:enum_plus/enum_plus.dart'; | ||
|
||
enum Animal with EnumPlus { | ||
DOG(0), | ||
CAT(1), | ||
HONEY_BEE(2); | ||
|
||
const Animal(this.value); | ||
|
||
final int value; | ||
|
||
@override | ||
dynamic toValue() => value; | ||
} |
Oops, something went wrong.