Coverage Report - com.damnhandy.uri.template.impl.Modifier
 
Classes in this File Line Coverage Branch Coverage Complexity
Modifier
100%
8/8
N/A
1
 
 1  
 /*
 2  
  * Copyright 2012, Ryan J. McDonough
 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  
 package com.damnhandy.uri.template.impl;
 17  
 
 18  
 /**
 19  
  *
 20  
  *
 21  
  *
 22  
  * @author <a href="ryan@damnhandy.com">Ryan J. McDonough</a>
 23  
  * @version $Revision: 1.1 $
 24  
  * @since 1.0
 25  
  */
 26  2
 public enum Modifier
 27  
 {
 28  
 
 29  2
    NONE         (""),
 30  2
    PREFIX       (":"),
 31  2
    EXPLODE      ("*");
 32  
 
 33  
    /**
 34  
     *
 35  
     */
 36  
    private String value;
 37  
 
 38  
    /**
 39  
     *
 40  
     * Create a new Modifier.
 41  
     *
 42  
     * @param value
 43  
     */
 44  
    Modifier(String value)
 45  6
    {
 46  6
       this.value = value;
 47  6
    }
 48  
 
 49  
    /**
 50  
     *
 51  
     *
 52  
     * @return
 53  
     */
 54  
    public String getValue()
 55  
    {
 56  4076
       return value;
 57  
    }
 58  
 }