745e8c2d5e6a1a455fe74c9f001aa15f8174d16b
[zxing.git] / core-ext / src / com / google / zxing / client / result / URIParsedResult.java
1 /*
2  * Copyright 2007 Google Inc.
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.result;
18
19 import java.net.URI;
20 import java.net.URISyntaxException;
21
22 /**
23  * @author srowen@google.com (Sean Owen)
24  */
25 public final class URIParsedResult extends ParsedReaderResult {
26
27   private final URI uri;
28
29   public URIParsedResult(String rawText) {
30     super(ParsedReaderResultType.URI);
31     try {
32       uri = new URI(rawText);
33     } catch (URISyntaxException urise) {
34       throw new IllegalArgumentException(urise.toString());
35     }
36   }
37
38   public URI getURI() {
39     return uri;
40   }
41
42   @Override
43   public String getDisplayResult() {
44     return uri.toString();
45   }
46
47 }