Package ch.bailu.gtk.glib
Interface ConvertError
public interface ConvertError
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
URI is invalid.static final int
An embedded NUL character is present in
conversion output where a NUL-terminated string is expected.static final int
Conversion failed for some reason.static final int
Invalid byte sequence in conversion input;
or the character sequence could not be represented in the target
character set.static final int
Conversion between the requested character
sets is not supported.static final int
No memory available.static final int
Pathname is not an absolute path.static final int
Partial character sequence at end of input.
-
Field Details
-
NO_CONVERSION
static final int NO_CONVERSIONConversion between the requested character
sets is not supported.- See Also:
-
ILLEGAL_SEQUENCE
static final int ILLEGAL_SEQUENCEInvalid byte sequence in conversion input;
or the character sequence could not be represented in the target
character set.- See Also:
-
FAILED
static final int FAILEDConversion failed for some reason.- See Also:
-
PARTIAL_INPUT
static final int PARTIAL_INPUTPartial character sequence at end of input.- See Also:
-
BAD_URI
static final int BAD_URIURI is invalid.- See Also:
-
NOT_ABSOLUTE_PATH
static final int NOT_ABSOLUTE_PATHPathname is not an absolute path.- See Also:
-
NO_MEMORY
static final int NO_MEMORYNo memory available. Since: 2.40- See Also:
-
EMBEDDED_NUL
static final int EMBEDDED_NULAn embedded NUL character is present in
conversion output where a NUL-terminated string is expected.
Since: 2.56- See Also:
-