Added new recursion mode.
[mime4j.git] / src / main / java / org / apache / james / mime4j / RecursionMode.java
blob1a227ede0b5bece01938269236aa09ba829a429c
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 *
9 * *
10 * http://www.apache.org/licenses/LICENSE-2.0 *
11 * *
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;
22 /**
23 * Enumeration of parsing modes.
25 public interface RecursionMode {
27 /**
28 * Recursively parse every <code>message/rfc822</code> part
29 * @see #getRecursionMode()
31 public static final int M_RECURSE = 0;
32 /**
33 * Do not recurse <code>message/rfc822</code> parts
34 * @see #getRecursionMode()
36 public static final int M_NO_RECURSE = 1;
37 /**
38 * Parse into raw entities
39 * @see #getRecursionMode()
41 public static final int M_RAW = 2;
42 /**
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;