-
Notifications
You must be signed in to change notification settings - Fork 86
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 #113 from physphil/develop
Merge develop into master
- Loading branch information
Showing
20 changed files
with
584 additions
and
334 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 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
68 changes: 68 additions & 0 deletions
68
app/src/main/java/com/physphil/android/unitconverterultimate/api/models/Currencies.kt
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,68 @@ | ||
/* | ||
* Copyright 2018 Phil Shadlyn | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.physphil.android.unitconverterultimate.api.models | ||
|
||
/** | ||
* Copyright (c) 2018 Phil Shadlyn | ||
*/ | ||
data class Currencies(val currencies: List<Currency>) { | ||
fun toMap(): Map<Country, Double> { | ||
val map = mutableMapOf<Country, Double>() | ||
currencies.forEach { | ||
try { | ||
map.put(Country.valueOf(it.currency), it.rate) | ||
} catch (ignored: IllegalArgumentException) {} | ||
} | ||
return map | ||
} | ||
} | ||
|
||
data class Currency(val currency: String, val rate: Double) | ||
|
||
enum class Country { | ||
AUD, | ||
BGN, | ||
BRL, | ||
CAD, | ||
CHF, | ||
CNY, | ||
CZK, | ||
DKK, | ||
GBP, | ||
HKD, | ||
HRK, | ||
HUF, | ||
IDR, | ||
ILS, | ||
INR, | ||
JPY, | ||
KRW, | ||
MXN, | ||
MYR, | ||
NOK, | ||
NZD, | ||
PHP, | ||
PLN, | ||
RON, | ||
RUB, | ||
SEK, | ||
SGD, | ||
THB, | ||
TRY, | ||
USD, | ||
ZAR | ||
} |
40 changes: 0 additions & 40 deletions
40
...src/main/java/com/physphil/android/unitconverterultimate/api/models/CurrencyResponse.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.