Standardize and update all copyright statements to name "ZXing authors" as suggested...
[zxing.git] / android / src / com / google / zxing / client / android / AndroidIntentParsedResult.java
1 /*
2  * Copyright 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;
18
19 import android.content.Intent;
20 import com.google.zxing.client.result.ParsedReaderResult;
21 import com.google.zxing.client.result.ParsedReaderResultType;
22
23 import java.net.URISyntaxException;
24
25 /**
26  * A {@link ParsedReaderResult} derived from a URI that encodes an Android
27  * {@link Intent}, and which should presumably trigger that intent on Android.
28  *
29  * @author srowen@google.com (Sean Owen)
30  */
31 public final class AndroidIntentParsedResult extends ParsedReaderResult {
32
33   private final Intent intent;
34
35   private AndroidIntentParsedResult(Intent intent) {
36     super(ParsedReaderResultType.ANDROID_INTENT);
37     this.intent = intent;
38   }
39
40   public static AndroidIntentParsedResult parse(String rawText) {
41     try {
42       return new AndroidIntentParsedResult(Intent.getIntent(rawText));
43     } catch (URISyntaxException urise) {
44       return null;
45     } catch (IllegalArgumentException iae) {
46       return null;
47     }
48   }
49
50   public Intent getIntent() {
51     return intent;
52   }
53
54   @Override
55   public String getDisplayResult() {
56     return intent.toString();
57   }
58
59 }