Merge "Added support for annotations in generated APIs."
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-model-api / src / main / java / org / opendaylight / controller / sal / binding / model / api / type / builder / EnumBuilder.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.binding.model.api.type.builder;
9
10 import org.opendaylight.controller.sal.binding.model.api.Enumeration;
11 import org.opendaylight.controller.sal.binding.model.api.Type;
12
13 /**
14
15  *
16  */
17 public interface EnumBuilder extends Type {
18     
19     public AnnotationTypeBuilder addAnnotation(final String packageName, final String name);
20     
21     public void addValue(final String name, final Integer value);
22
23     public Enumeration toInstance(final Type definingType);
24 }