1 /****************************************************************
2 * Licensed to the Apache Software Foundation (ASF) under one *
3 * or more contributor license agreements. See the NOTICE file *
4 * distributed with this work for additional information *
5 * regarding copyright ownership. The ASF licenses this file *
6 * to you under the Apache License, Version 2.0 (the *
7 * "License"); you may not use this file except in compliance *
8 * with the License. You may obtain a copy of the License at *
10 * http://www.apache.org/licenses/LICENSE-2.0 *
12 * Unless required by applicable law or agreed to in writing, *
13 * software distributed under the License is distributed on an *
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
15 * KIND, either express or implied. See the License for the *
16 * specific language governing permissions and limitations *
17 * under the License. *
18 ****************************************************************/
20 package org
.apache
.james
.mime4j
;
23 * Enumeration of parsing modes.
25 public interface RecursionMode
{
28 * Recursively parse every <code>message/rfc822</code> part
29 * @see #getRecursionMode()
31 public static final int M_RECURSE
= 0;
33 * Do not recurse <code>message/rfc822</code> parts
34 * @see #getRecursionMode()
36 public static final int M_NO_RECURSE
= 1;
38 * Parse into raw entities
39 * @see #getRecursionMode()
41 public static final int M_RAW
= 2;
43 * Do not recurse <code>message/rfc822</code> parts
44 * and treat multiparts as a single flat body.
45 * @see #getRecursionMode()
47 public static final int M_FLAT
= 3;