The new Android client, featuring:
[zxing.git] / android / src / com / google / zxing / client / android / result / AndroidIntentParsedResult.java
1 /*
2  * Copyright (C) 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android.result;
18
19 import android.content.Intent;
20 import com.google.zxing.client.result.ParsedResult;
21 import com.google.zxing.client.result.ParsedResultType;
22
23 import java.net.URISyntaxException;
24
25 /**
26  * A {@link com.google.zxing.client.result.ParsedResult} derived from a URI that encodes an Android
27  * {@link Intent}, and which should presumably trigger that intent on Android.
28  */
29 public final class AndroidIntentParsedResult extends ParsedResult {
30
31   private final Intent mIntent;
32
33   private AndroidIntentParsedResult(Intent intent) {
34     super(ParsedResultType.ANDROID_INTENT);
35     mIntent = intent;
36   }
37
38   public static AndroidIntentParsedResult parse(String rawText) {
39     try {
40       return new AndroidIntentParsedResult(Intent.getIntent(rawText));
41     } catch (URISyntaxException urise) {
42       return null;
43     } catch (IllegalArgumentException iae) {
44       return null;
45     }
46   }
47
48   public Intent getIntent() {
49     return mIntent;
50   }
51
52   @Override
53   public String getDisplayResult() {
54     return mIntent.toString();
55   }
56
57 }