/** * Copyright © 2006-2016 Web Cohesion (info@webcohesion.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.webcohesion.enunciate.modules.jackson.api.impl; import com.webcohesion.enunciate.api.ApiRegistrationContext; import com.webcohesion.enunciate.api.Styles; import com.webcohesion.enunciate.api.datatype.BaseType; import com.webcohesion.enunciate.api.datatype.Property; import com.webcohesion.enunciate.api.datatype.Value; import com.webcohesion.enunciate.facets.FacetFilter; import com.webcohesion.enunciate.javac.javadoc.JavaDoc; import com.webcohesion.enunciate.modules.jackson.model.EnumTypeDefinition; import com.webcohesion.enunciate.modules.jackson.model.EnumValue; import java.util.ArrayList; import java.util.List; /** * @author Ryan Heaton */ public class EnumDataTypeImpl extends DataTypeImpl { private final EnumTypeDefinition typeDefinition; public EnumDataTypeImpl(EnumTypeDefinition typeDefinition, ApiRegistrationContext registrationContext) { super(typeDefinition, registrationContext); this.typeDefinition = typeDefinition; } @Override public BaseType getBaseType() { return BaseType.string; } @Override public List<? extends Value> getValues() { FacetFilter facetFilter = this.typeDefinition.getContext().getContext().getConfiguration().getFacetFilter(); List<EnumValue> enumValues = this.typeDefinition.getEnumValues(); ArrayList<Value> values = new ArrayList<Value>(enumValues.size()); for (EnumValue enumValue : enumValues) { if (enumValue.getValue() != null) { if (!facetFilter.accept(enumValue)) { continue; } JavaDoc.JavaDocTagList sinceTags = enumValue.getJavaDoc(this.registrationContext.getTagHandler()).get("since"); values.add(new ValueImpl(enumValue.getValue(), enumValue.getJavaDoc(this.registrationContext.getTagHandler()).toString(), Styles.gatherStyles(enumValue, this.typeDefinition.getContext().getContext().getConfiguration().getAnnotationStyles()), enumValue.getFacets(), sinceTags == null ? null : sinceTags.toString())); } } return values; } @Override public List<? extends Property> getProperties() { return null; } }