com.trolltech.qt.core
Class QCoreApplication.Encoding

java.lang.Object
  extended by java.lang.Enum
      extended by com.trolltech.qt.core.QCoreApplication.Encoding
All Implemented Interfaces:
QtEnumerator, java.io.Serializable, java.lang.Comparable
Enclosing class:
QCoreApplication

public static final class QCoreApplication.Encoding
extends java.lang.Enum
implements QtEnumerator

Also, for all encodings except QTextStream::Latin1 and QTextStream::UTF8 , you need to call setAutoDetectUnicode (false) to obtain the Qt 3 behavior in addition to the setCodec() call.

See also:
setCodec(), and setAutoDetectUnicode().

See Also:
Serialized Form

Field Summary
static QCoreApplication.Encoding CodecForTr
           
static QCoreApplication.Encoding UnicodeUTF8
          Use setCodec (QTextCodec::codecForName ("UTF-16")) instead.
 
Method Summary
static QCoreApplication.Encoding resolve(int value)
          Returns the Encoding constant with the specified int.
 int value()
          This function should return an integer value for the enum values of the enumeration that implements this interface.
static QCoreApplication.Encoding valueOf(java.lang.String name)
           
static QCoreApplication.Encoding[] values()
           
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

CodecForTr

public static final QCoreApplication.Encoding CodecForTr

UnicodeUTF8

public static final QCoreApplication.Encoding UnicodeUTF8
Use setCodec (QTextCodec::codecForName ("UTF-16")) instead.

Method Detail

values

public static QCoreApplication.Encoding[] values()

valueOf

public static QCoreApplication.Encoding valueOf(java.lang.String name)

value

public int value()
This function should return an integer value for the enum values of the enumeration that implements this interface.

Specified by:
value in interface QtEnumerator

resolve

public static QCoreApplication.Encoding resolve(int value)
Returns the Encoding constant with the specified int.