]> gitweb.fperrin.net Git - DictionaryPC.git/blob - src/com/hughes/util/Args.java
6c35dd14626ae82698b04e8665b872bf41df65af
[DictionaryPC.git] / src / com / hughes / util / Args.java
1 // Copyright 2011 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 package com.hughes.util;
16
17 import java.util.LinkedHashMap;
18 import java.util.Map;
19
20 @SuppressWarnings("WeakerAccess")
21 public class Args {
22
23     public static Map<String, String> keyValueArgs(final String[] args) {
24         final Map<String,String> dest = new LinkedHashMap<>();
25         for (String arg : args) {
26             int equalsIndex;
27             if (arg.startsWith("--") && (equalsIndex = arg.indexOf("=")) >= 0) {
28                 final String key = arg.substring(2, equalsIndex);
29                 final String value = arg.substring(equalsIndex + 1, arg.length());
30                 dest.put(key, value);
31             }
32         }
33         return dest;
34     }
35 }