Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.bugvm.apple.foundation.NSXMLParserErrorCode Maven / Gradle / Ivy
/*
* Copyright (C) 2013-2015 RoboVM AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bugvm.apple.foundation;
/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.corefoundation.*;
import com.bugvm.apple.uikit.*;
import com.bugvm.apple.coretext.*;
import com.bugvm.apple.coreanimation.*;
import com.bugvm.apple.coredata.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.coremedia.*;
import com.bugvm.apple.security.*;
import com.bugvm.apple.dispatch.*;
/* */
/**/
/* */
@ForceLinkClass(NSXMLParserError.class)
/**/@Marshaler(ValuedEnum.AsMachineSizedSIntMarshaler.class)/* */
public enum /**/NSXMLParserErrorCode/* */ implements NSErrorCode {
/**/
Internal(1L),
OutOfMemory(2L),
DocumentStart(3L),
EmptyDocument(4L),
PrematureDocumentEnd(5L),
InvalidHexCharacterRef(6L),
InvalidDecimalCharacterRef(7L),
InvalidCharacterRef(8L),
InvalidCharacter(9L),
CharacterRefAtEOF(10L),
CharacterRefInProlog(11L),
CharacterRefInEpilog(12L),
CharacterRefInDTD(13L),
EntityRefAtEOF(14L),
EntityRefInProlog(15L),
EntityRefInEpilog(16L),
EntityRefInDTD(17L),
ParsedEntityRefAtEOF(18L),
ParsedEntityRefInProlog(19L),
ParsedEntityRefInEpilog(20L),
ParsedEntityRefInInternalSubset(21L),
EntityReferenceWithoutName(22L),
EntityReferenceMissingSemi(23L),
ParsedEntityRefNoName(24L),
ParsedEntityRefMissingSemi(25L),
UndeclaredEntity(26L),
UnparsedEntity(28L),
EntityIsExternal(29L),
EntityIsParameter(30L),
UnknownEncoding(31L),
EncodingNotSupported(32L),
StringNotStarted(33L),
StringNotClosed(34L),
NamespaceDeclaration(35L),
EntityNotStarted(36L),
EntityNotFinished(37L),
LessThanSymbolInAttribute(38L),
AttributeNotStarted(39L),
AttributeNotFinished(40L),
AttributeHasNoValue(41L),
AttributeRedefined(42L),
LiteralNotStarted(43L),
LiteralNotFinished(44L),
CommentNotFinished(45L),
ProcessingInstructionNotStarted(46L),
ProcessingInstructionNotFinished(47L),
NotationNotStarted(48L),
NotationNotFinished(49L),
AttributeListNotStarted(50L),
AttributeListNotFinished(51L),
MixedContentDeclNotStarted(52L),
MixedContentDeclNotFinished(53L),
ElementContentDeclNotStarted(54L),
ElementContentDeclNotFinished(55L),
XMLDeclNotStarted(56L),
XMLDeclNotFinished(57L),
ConditionalSectionNotStarted(58L),
ConditionalSectionNotFinished(59L),
ExternalSubsetNotFinished(60L),
DOCTYPEDeclNotFinished(61L),
MisplacedCDATAEndString(62L),
CDATANotFinished(63L),
MisplacedXMLDeclaration(64L),
SpaceRequired(65L),
SeparatorRequired(66L),
NMTOKENRequired(67L),
NAMERequired(68L),
PCDATARequired(69L),
URIRequired(70L),
PublicIdentifierRequired(71L),
LTRequired(72L),
GTRequired(73L),
LTSlashRequired(74L),
EqualExpected(75L),
TagNameMismatch(76L),
UnfinishedTag(77L),
StandaloneValue(78L),
InvalidEncodingName(79L),
CommentContainsDoubleHyphen(80L),
InvalidEncoding(81L),
ExternalStandaloneEntity(82L),
InvalidConditionalSection(83L),
EntityValueRequired(84L),
NotWellBalanced(85L),
ExtraContent(86L),
InvalidCharacterInEntity(87L),
ParsedEntityRefInInternal(88L),
EntityRefLoop(89L),
EntityBoundary(90L),
InvalidURI(91L),
URIFragment(92L),
NoDTD(94L),
DelegateAbortedParse(512L);
/* */
/**/
/* */
/**//* */
/**//* */
private final long n;
private /**/NSXMLParserErrorCode/* */(long n) { this.n = n; }
public long value() { return n; }
public static /**/NSXMLParserErrorCode/* */ valueOf(long n) {
for (/**/NSXMLParserErrorCode/* */ v : values()) {
if (v.n == n) {
return v;
}
}
throw new IllegalArgumentException("No constant with value " + n + " found in "
+ /**/NSXMLParserErrorCode/* */.class.getName());
}
}