public static CommentType getCommentType(String commentTypeName){
initCommentTypes();
return commentTypeMap.get(commentTypeName);
}
public static boolean hasCommentType(List<CommentType> commentTypes,String commentTypeName){
CommentType commentType = getCommentType(commentTypeName);
if(commentType!=null){
return commentTypes.contains(commentType);
}
return false;
}