📄 messagefield.java
字号:
/*
* JVending - J2ME MMS Client
* Copyright (C) 2004 Shane Isbell
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.jvending.messaging.impl.mms;
/**
* @author Shane Isbell
* @version 1.0.0a
* @created 04/03/27
*/
final class MessageField {
private MessageField() { }
public static final int BCC = 1;
public static final int CC = 2;
public static final int X_MMS_CONTENT_LOCATION = 3;
public static final int CONTENT_TYPE = 4;
public static final int DATE = 5;
public static final int X_MMS_DELIVERY_REPORT = 6;
public static final int X_MMS_DELIVERY_TIME = 7;
public static final int X_MMS_EXPIRY = 8;
public static final int FROM = 9;
public static final int X_MMS_MESSAGE_CLASS = 10;
public static final int MESSAGE_ID = 11;
public static final int X_MMS_MESSAGE_TYPE = 12;
public static final int X_MMS_MMS_VERSION = 13;
public static final int X_MMS_MESSAGE_SIZE = 14;
public static final int X_MMS_PRIORITY = 15;
public static final int X_MMS_READ_REPORT = 16;
public static final int X_MMS_REPORT_ALLOWED = 17;
public static final int X_MMS_RESPONSE_STATUS = 18;
public static final int X_MMS_RESPONSE_TEXT = 19;
public static final int X_MMS_SENDER_VISIBILITY = 20;
public static final int X_MMS_STATUS = 21;
public static final int SUBJECT = 22;
public static final int TO = 23;
public static final int X_MMS_TRANSACTION_ID = 24;
public static final int X_MMS_RETRIEVE_STATUS = 25;
public static final int X_MMS_RETRIEVE_TEXT = 26;
public static final int X_MMS_READ_STATUS = 27;
public static final int X_MMS_REPLY_CHARGING = 28;
public static final int X_MMS_REPLY_CHARGING_DEADLINE = 29;
public static final int X_MMS_REPLY_CHARGING_ID = 30;
public static final int X_MMS_REPLY_CHARGING_SIZE = 31;
public static final int X_MMS_PREVIOUSLY_SENT_BY = 32;
public static final int X_MMS_PREVIOUSLY_SENT_DATE = 33;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -