IppPropId.java
69.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
/*
* Decompiled with CFR 0_118.
*/
package com.scene7.is.ipp.messages;
import com.scene7.is.ipp.messages.EnumOps;
import com.scene7.is.ipp.messages.Ipp;
import java.io.IOException;
import java.io.Writer;
public class IppPropId
implements EnumOps {
public static final int None = 0;
public static final int XDim = 65792;
public static final int YDim = 65793;
public static final int XDpi = 65794;
public static final int YDpi = 65795;
public static final int ColorModel = 65796;
public static final int PixelType = 65797;
public static final int ImageFormat = 65798;
public static final int ImageLayout = 65799;
public static final int ImageEncoding = 65800;
public static final int JpegQuality = 65801;
public static final int DoAlpha = 65802;
public static final int HasAlpha = 65803;
public static final int ServerScaling = 65804;
public static final int ImageHasSecondary = 65805;
public static final int PixelDepth = 65806;
public static final int MaxScale = 65807;
public static final int MinScale = 65808;
public static final int JpegIncludeTable = 65809;
public static final int XPos = 65810;
public static final int YPos = 65811;
public static final int ImagePixelType = 65812;
public static final int ImageInputProfile = 65813;
public static final int JpegDownsampleChrominance = 65814;
public static final int RequestAlphaOnly = 65815;
public static final int EmbedIccProfile = 65816;
public static final int WatermarkImage = 65817;
public static final int NumberColormapEntries = 65818;
public static final int ColormapEntries = 65819;
public static final int ColormapType = 65820;
public static final int DitherType = 65821;
public static final int ColorProfileMismatchAction = 65822;
public static final int HasEmbeddedColorProfile = 65823;
public static final int EmbedPhotoshopPaths = 65824;
public static final int ColorProfileDescription = 65825;
public static final int SvgDocument = 65826;
public static final int ColorProfileSignature = 65827;
public static final int AllowDomains = 65828;
public static final int EmbedXmpData = 65829;
public static final int ColorProfileFileName = 65830;
public static final int HasEmbeddedPhotoshopPaths = 65831;
public static final int HasEmbeddedXmpData = 65832;
public static final int XmpData = 65833;
public static final int DoColormap = 65834;
public static final int ProgressiveJpegScanType = 65835;
public static final int RequestingUrl = 65836;
public static final int JpegMaximumBytes = 65840;
public static final int UserName = 66048;
public static final int LoginName = 66049;
public static final int Privilege = 66050;
public static final int Name = 66304;
public static final int Description = 66305;
public static final int Notes = 66306;
public static final int Caption = 66307;
public static final int Title = 66308;
public static final int Created = 66560;
public static final int Entered = 66561;
public static final int Modified = 66562;
public static final int FileName = 66816;
public static final int FolderName = 66817;
public static final int FilePath = 66818;
public static final int FileSize = 66819;
public static final int ServerOwned = 66820;
public static final int OriginalFileName = 66821;
public static final int Application = 67072;
public static final int Author = 67073;
public static final int Revision = 67074;
public static final int EntryId = 67075;
public static final int VersionMajor = 67076;
public static final int VersionMinor = 67077;
public static final int ClientType = 67078;
public static final int LowVersionMinor = 67079;
public static final int HighVersionMinor = 67080;
public static final int LowVersionMajor = 67081;
public static final int HighVersionMajor = 67082;
public static final int TransactionId = 67083;
public static final int LineNumber = 67084;
public static final int SourceFileName = 67085;
public static final int FileId = 67086;
public static final int TileXDim = 67328;
public static final int TileYDim = 67329;
public static final int MaxPipeBytes = 67330;
public static final int Gamma = 67331;
public static final int TilePadding = 67332;
public static final int ViewClipPath = 67333;
public static final int ViewBackground = 67334;
public static final int ViewPriority = 67335;
public static final int TileAddrReduce = 67336;
public static final int TotalViews = 67337;
public static final int MaxViews = 67338;
public static final int ViewId = 67339;
public static final int StateId = 67340;
public static final int ViewPixelType = 67341;
public static final int ViewProfile = 67342;
public static final int ViewBackgroundPixel = 67343;
public static final int XScale = 67344;
public static final int YScale = 67345;
public static final int ViewProfileUri = 67346;
public static final int WatermarkCreatorId = 67584;
public static final int WatermarkCreatorPin = 67585;
public static final int WatermarkDistributorId = 67586;
public static final int WatermarkDistributorPin = 67587;
public static final int WatermarkImageId = 67588;
public static final int WatermarkTransactionId = 67589;
public static final int WatermarkCopyright1 = 67590;
public static final int WatermarkCopyright2 = 67591;
public static final int WatermarkAdult = 67592;
public static final int WatermarkRestricted = 67593;
public static final int WatermarkCopyProtected = 67594;
public static final int WatermarkDurability = 67595;
public static final int WatermarkSourceResolution = 67596;
public static final int WatermarkTargetResolution = 67597;
public static final int WatermarkType = 67598;
public static final int WatermarkChroma = 67599;
public static final int ImageSavePriority = 1048576;
public static final int InfoFilePath = 1048577;
public static final int InfoFileData = 1048578;
public static final int ConfigTempDirectory = 2097408;
public static final int ConfigSaveDirectory = 2097409;
public static final int ConfigCacheServerUrl = 2097410;
public static final int ConfigLog = 2097411;
public static final int ConfigTcpPort = 2097412;
public static final int ConfigSVGTcpPort = 2097413;
public static final int ConfigHostName = 2097414;
public static final int ConfigAcceptExOutstanding = 2097415;
public static final int ConfigAffinityMask = 2097416;
public static final int ConfigClientInitTimeout = 2097417;
public static final int ConfigViewIdleTimeout = 2097418;
public static final int ConfigSaveAutoReleaseTimeout = 2097419;
public static final int ConfigTextFaceCacheSize = 2097420;
public static final int ConfigResampleKernelCacheSize = 2097421;
public static final int ConfigImageCacheSize = 2097422;
public static final int ConfigLookupFonts = 2097423;
public static final int ConfigUseSplinesForBicubicResampler = 2097424;
public static final int ConfigUseHighQualityAutoDownSampler = 2097425;
public static final int ConfigMaxNonDsfSize = 2097426;
public static final int ConfigMaxMessageSize = 2097427;
public static final int ConfigPhysicalMemory = 2097428;
public static final int ConfigWorkerThreads = 2097429;
public static final int ConfigIrMaxNonPyrVignetteSize = 2097430;
public static final int ConfigIrMaxDefaultVisibleObjects = 2097431;
public static final int ConfigIrMaxTextureSizeFactor = 2097432;
public static final int ConfigTraceClient = 2097433;
public static final int ConfigTraceStatsInterval = 2097434;
public static final int ConfigRootPath = 2097435;
public static final int ConfigPerspectiveSize = 2097436;
public static final int KBytesActive = 2162688;
public static final int KBytesPurgeable = 2162689;
public static final int ServerOSName = 2162690;
public static final int KBytesVirtual = 2162691;
public static final int KBytesResident = 2162692;
public static final int KBytesLargestVirtualFreeBlock = 2162693;
public static final int KBytesInactive = 2162694;
public static final int TextColor = 3145729;
public static final int TextBgColor = 3145730;
public static final int TextHalign = 3145731;
public static final int TextValign = 3145732;
public static final int TextAntialias = 3145733;
public static final int TextCustDir = 3145734;
public static final int TextXDpi = 3145735;
public static final int TextYDpi = 3145736;
public static final int TextFitMode = 3145737;
public static final int TextRgbOutputColorProfile = 3145738;
public static final int TextCmykOutputColorProfile = 3145739;
public static final int TextGrayOutputColorProfile = 3145740;
public static final int TextAllowLineBreak = 3145741;
public static final int TextAllowSyntheticFonts = 3145742;
public static final int TextAllowBreakOnNonSpace = 3145743;
public static final int TextIgnoreLeadingAndTrailingParagraphs = 3145744;
public static final int TextApplyXInsetMargin = 3145745;
public static final int TextApplyYInsetMargin = 3145746;
public static final int TextAllowVerticalAlignment = 3145747;
public static final int TextAllowCopyFitting = 3145748;
public static final int TextRgbInputColorProfile = 3145749;
public static final int TextCmykInputColorProfile = 3145750;
public static final int TextGrayInputColorProfile = 3145751;
public static final int TextRenderIntent = 3145752;
public static final int TextBlackPointCompensation = 3145753;
public static final int TextDither = 3145754;
public static final int AnchorText = 4194305;
public static final int AnchorTextDefaultFont = 4194306;
public static final int AnchorTextFontName = 4194307;
public static final int AnchorTextFontFile = 4194308;
public static final int AnchorTextFontMetricsFile = 4194309;
public static final int AnchorTextKerningTable = 4194310;
public static final int AnchorTextIsBold = 4194311;
public static final int AnchorTextIsItalic = 4194312;
public static final int AnchorRtfErrorId = 4194313;
public static final int AnchorRtfError = 4194314;
public static final int AnchorRtfCharacterNumber = 4194315;
public static final int AnchorTextType = 4194316;
public static final int AnchorTextPath = 4194317;
public static final int AnchorTextPathExclusion = 4194318;
public static final int AnchorTextFlowType = 4194319;
public static final int AnchorTextLayoutType = 4194320;
public static final int ImageRendering = 5242880;
public static final int ImageRenderingSchema = 5242881;
public static final int VignetteName = 5242896;
public static final int VignetteVersion = 5242897;
public static final int VignetteDefaultObject = 5242899;
public static final int VignetteMD5 = 5242901;
public static final int VignetteMinScale = 5242902;
public static final int VignetteMaxScale = 5242903;
public static final int VignetteResolutionMin = 5242904;
public static final int VignetteResolutionMax = 5242905;
public static final int VignetteResolutionAvg = 5242906;
public static final int VignettePreviousObject = 5242907;
public static final int VignetteObject = 5242908;
public static final int VignetteObjectX = 5242909;
public static final int VignetteObjectY = 5242910;
public static final int VignetteObjectLevel = 5242911;
public static final int VignetteViewObject = 5242912;
public static final int VignetteViewObjectIdent = 5242913;
public static final int VignetteViewObjectZorder = 5242914;
public static final int VignetteViewObjectAttributes = 5242915;
public static final int VignetteViewNumObjects = 5242916;
public static final int VignetteViewNumOverlapping = 5242917;
public static final int VignetteViewNumRenderable = 5242918;
public static final int VignetteViewNumTexturable = 5242919;
public static final int VignetteViewNumVisible = 5242920;
public static final int VignetteViewObjectMaskX = 5242921;
public static final int VignetteViewObjectMaskY = 5242922;
public static final int VignetteViewObjectMaskWidth = 5242923;
public static final int VignetteViewObjectMaskHeight = 5242924;
public static final int VignetteViewObjectResolution = 5242925;
public static final int MaterialAlign = 5242928;
public static final int MaterialBgc = 5242929;
public static final int MaterialColor = 5242930;
public static final int MaterialGloss = 5242931;
public static final int MaterialType = 5242932;
public static final int MaterialOpacity = 5242933;
public static final int MaterialQuality = 5242934;
public static final int MaterialRoughness = 5242935;
public static final int MaterialSharpen = 5242936;
public static final int MaterialIllum = 5242937;
public static final int MaterialRenderConfig = 5242938;
public static final int MaterialId = 5242939;
public static final int MaterialMatch = 5242944;
public static final int MaterialResolution = 5242945;
public static final int MaterialRotate = 5242946;
public static final int MaterialXOrigin = 5242947;
public static final int MaterialYOrigin = 5242948;
public static final int MaterialXPos = 5242949;
public static final int MaterialYPos = 5242950;
public static final int MaterialMinResolution = 5242951;
public static final int MaterialXOriginNorm = 5242952;
public static final int MaterialYOriginNorm = 5242953;
public static final int MaterialXPosAbs = 5242954;
public static final int MaterialYPosAbs = 5242955;
public static final int MaterialObjectXDim = 5242960;
public static final int MaterialObjectYDim = 5242961;
public static final int MaterialObjectThickness = 5242962;
public static final int MaterialObjectMaxThickness = 5242963;
public static final int MaterialObjectMaxArea = 5242964;
public static final int MaterialStyleFilename = 5242976;
public static final int MaterialRenderGlass = 5242978;
public static final int MaterialGroutWidth = 5242992;
public static final int MaterialNewGroutWidth = 5242993;
public static final int MaterialNewGroutColor = 5242994;
public static final int VignetteDefaultVisibility = 5243008;
public static final int VignetteObjFail = 5243009;
public static final int VignetteSelFail = 5243010;
public static final int VignetteRenderScene = 5243011;
public static final int VignetteNumOverlapping = 5243024;
public static final int VignetteMaxOverlapping = 5243025;
public static final int VignetteType = 5243026;
public static final int MaterialEmbedName = 5243040;
public static final int MaterialEmbedIdx = 5243041;
public static final int MaterialEmbedVignette = 5243042;
public static final int MaterialForceTemplate = 5243056;
public static final int VignetteViewDecalXPos = 5243072;
public static final int VignetteViewDecalYPos = 5243073;
public static final int VignetteViewDecalXPosAbs = 5243074;
public static final int VignetteViewDecalYPosAbs = 5243075;
public static final int VignetteViewDecalUAngle = 5243076;
public static final int VignetteViewDecalVAngle = 5243077;
public static final int VignetteViewDecalUScale = 5243078;
public static final int VignetteViewDecalVScale = 5243079;
public static final int RenderViewCamera = 5243088;
public static final int RenderViewScale = 5243089;
public static final int RenderViewWidth = 5243090;
public static final int RenderViewHeight = 5243091;
public static final int RenderViewMask = 5243092;
public static final int RenderViewObject = 5243093;
public static final int TextureEncoding = 5243104;
public static final int TextureResolution = 5243105;
public static final int TextureGroutWidth = 5243106;
private static String[] strings_ = new String[]{"None", "XDim", "YDim", "XDpi", "YDpi", "ColorModel", "PixelType", "ImageFormat", "ImageLayout", "ImageEncoding", "JpegQuality", "DoAlpha", "HasAlpha", "ServerScaling", "ImageHasSecondary", "PixelDepth", "MaxScale", "MinScale", "JpegIncludeTable", "XPos", "YPos", "ImagePixelType", "ImageInputProfile", "JpegDownsampleChrominance", "RequestAlphaOnly", "EmbedIccProfile", "WatermarkImage", "NumberColormapEntries", "ColormapEntries", "ColormapType", "DitherType", "ColorProfileMismatchAction", "HasEmbeddedColorProfile", "EmbedPhotoshopPaths", "ColorProfileDescription", "SvgDocument", "ColorProfileSignature", "AllowDomains", "EmbedXmpData", "ColorProfileFileName", "HasEmbeddedPhotoshopPaths", "HasEmbeddedXmpData", "XmpData", "DoColormap", "ProgressiveJpegScanType", "RequestingUrl", "JpegMaximumBytes", "UserName", "LoginName", "Privilege", "Name", "Description", "Notes", "Caption", "Title", "Created", "Entered", "Modified", "FileName", "FolderName", "FilePath", "FileSize", "ServerOwned", "OriginalFileName", "Application", "Author", "Revision", "EntryId", "VersionMajor", "VersionMinor", "ClientType", "LowVersionMinor", "HighVersionMinor", "LowVersionMajor", "HighVersionMajor", "TransactionId", "LineNumber", "SourceFileName", "FileId", "TileXDim", "TileYDim", "MaxPipeBytes", "Gamma", "TilePadding", "ViewClipPath", "ViewBackground", "ViewPriority", "TileAddrReduce", "TotalViews", "MaxViews", "ViewId", "StateId", "ViewPixelType", "ViewProfile", "ViewBackgroundPixel", "XScale", "YScale", "ViewProfileUri", "WatermarkCreatorId", "WatermarkCreatorPin", "WatermarkDistributorId", "WatermarkDistributorPin", "WatermarkImageId", "WatermarkTransactionId", "WatermarkCopyright1", "WatermarkCopyright2", "WatermarkAdult", "WatermarkRestricted", "WatermarkCopyProtected", "WatermarkDurability", "WatermarkSourceResolution", "WatermarkTargetResolution", "WatermarkType", "WatermarkChroma", "ImageSavePriority", "InfoFilePath", "InfoFileData", "ConfigTempDirectory", "ConfigSaveDirectory", "ConfigCacheServerUrl", "ConfigLog", "ConfigTcpPort", "ConfigSVGTcpPort", "ConfigHostName", "ConfigAcceptExOutstanding", "ConfigAffinityMask", "ConfigClientInitTimeout", "ConfigViewIdleTimeout", "ConfigSaveAutoReleaseTimeout", "ConfigTextFaceCacheSize", "ConfigResampleKernelCacheSize", "ConfigImageCacheSize", "ConfigLookupFonts", "ConfigUseSplinesForBicubicResampler", "ConfigUseHighQualityAutoDownSampler", "ConfigMaxNonDsfSize", "ConfigMaxMessageSize", "ConfigPhysicalMemory", "ConfigWorkerThreads", "ConfigIrMaxNonPyrVignetteSize", "ConfigIrMaxDefaultVisibleObjects", "ConfigIrMaxTextureSizeFactor", "ConfigTraceClient", "ConfigTraceStatsInterval", "ConfigRootPath", "ConfigPerspectiveSize", "KBytesActive", "KBytesPurgeable", "ServerOSName", "KBytesVirtual", "KBytesResident", "KBytesLargestVirtualFreeBlock", "KBytesInactive", "TextColor", "TextBgColor", "TextHalign", "TextValign", "TextAntialias", "TextCustDir", "TextXDpi", "TextYDpi", "TextFitMode", "TextRgbOutputColorProfile", "TextCmykOutputColorProfile", "TextGrayOutputColorProfile", "TextAllowLineBreak", "TextAllowSyntheticFonts", "TextAllowBreakOnNonSpace", "TextIgnoreLeadingAndTrailingParagraphs", "TextApplyXInsetMargin", "TextApplyYInsetMargin", "TextAllowVerticalAlignment", "TextAllowCopyFitting", "TextRgbInputColorProfile", "TextCmykInputColorProfile", "TextGrayInputColorProfile", "TextRenderIntent", "TextBlackPointCompensation", "TextDither", "AnchorText", "AnchorTextDefaultFont", "AnchorTextFontName", "AnchorTextFontFile", "AnchorTextFontMetricsFile", "AnchorTextKerningTable", "AnchorTextIsBold", "AnchorTextIsItalic", "AnchorRtfErrorId", "AnchorRtfError", "AnchorRtfCharacterNumber", "AnchorTextType", "AnchorTextPath", "AnchorTextPathExclusion", "AnchorTextFlowType", "AnchorTextLayoutType", "ImageRendering", "ImageRenderingSchema", "VignetteName", "VignetteVersion", "VignetteDefaultObject", "VignetteMD5", "VignetteMinScale", "VignetteMaxScale", "VignetteResolutionMin", "VignetteResolutionMax", "VignetteResolutionAvg", "VignettePreviousObject", "VignetteObject", "VignetteObjectX", "VignetteObjectY", "VignetteObjectLevel", "VignetteViewObject", "VignetteViewObjectIdent", "VignetteViewObjectZorder", "VignetteViewObjectAttributes", "VignetteViewNumObjects", "VignetteViewNumOverlapping", "VignetteViewNumRenderable", "VignetteViewNumTexturable", "VignetteViewNumVisible", "VignetteViewObjectMaskX", "VignetteViewObjectMaskY", "VignetteViewObjectMaskWidth", "VignetteViewObjectMaskHeight", "VignetteViewObjectResolution", "MaterialAlign", "MaterialBgc", "MaterialColor", "MaterialGloss", "MaterialType", "MaterialOpacity", "MaterialQuality", "MaterialRoughness", "MaterialSharpen", "MaterialIllum", "MaterialRenderConfig", "MaterialId", "MaterialMatch", "MaterialResolution", "MaterialRotate", "MaterialXOrigin", "MaterialYOrigin", "MaterialXPos", "MaterialYPos", "MaterialMinResolution", "MaterialXOriginNorm", "MaterialYOriginNorm", "MaterialXPosAbs", "MaterialYPosAbs", "MaterialObjectXDim", "MaterialObjectYDim", "MaterialObjectThickness", "MaterialObjectMaxThickness", "MaterialObjectMaxArea", "MaterialStyleFilename", "MaterialRenderGlass", "MaterialGroutWidth", "MaterialNewGroutWidth", "MaterialNewGroutColor", "VignetteDefaultVisibility", "VignetteObjFail", "VignetteSelFail", "VignetteRenderScene", "VignetteNumOverlapping", "VignetteMaxOverlapping", "VignetteType", "MaterialEmbedName", "MaterialEmbedIdx", "MaterialEmbedVignette", "MaterialForceTemplate", "VignetteViewDecalXPos", "VignetteViewDecalYPos", "VignetteViewDecalXPosAbs", "VignetteViewDecalYPosAbs", "VignetteViewDecalUAngle", "VignetteViewDecalVAngle", "VignetteViewDecalUScale", "VignetteViewDecalVScale", "RenderViewCamera", "RenderViewScale", "RenderViewWidth", "RenderViewHeight", "RenderViewMask", "RenderViewObject", "TextureEncoding", "TextureResolution", "TextureGroutWidth"};
public IppPropId() {
Ipp.Assert(false, "IppPropId ctor");
}
public static String stringStatic(int e) {
switch (e) {
case 0: {
return "None";
}
case 65792: {
return "XDim";
}
case 65793: {
return "YDim";
}
case 65794: {
return "XDpi";
}
case 65795: {
return "YDpi";
}
case 65796: {
return "ColorModel";
}
case 65797: {
return "PixelType";
}
case 65798: {
return "ImageFormat";
}
case 65799: {
return "ImageLayout";
}
case 65800: {
return "ImageEncoding";
}
case 65801: {
return "JpegQuality";
}
case 65802: {
return "DoAlpha";
}
case 65803: {
return "HasAlpha";
}
case 65804: {
return "ServerScaling";
}
case 65805: {
return "ImageHasSecondary";
}
case 65806: {
return "PixelDepth";
}
case 65807: {
return "MaxScale";
}
case 65808: {
return "MinScale";
}
case 65809: {
return "JpegIncludeTable";
}
case 65810: {
return "XPos";
}
case 65811: {
return "YPos";
}
case 65812: {
return "ImagePixelType";
}
case 65813: {
return "ImageInputProfile";
}
case 65814: {
return "JpegDownsampleChrominance";
}
case 65815: {
return "RequestAlphaOnly";
}
case 65816: {
return "EmbedIccProfile";
}
case 65817: {
return "WatermarkImage";
}
case 65818: {
return "NumberColormapEntries";
}
case 65819: {
return "ColormapEntries";
}
case 65820: {
return "ColormapType";
}
case 65821: {
return "DitherType";
}
case 65822: {
return "ColorProfileMismatchAction";
}
case 65823: {
return "HasEmbeddedColorProfile";
}
case 65824: {
return "EmbedPhotoshopPaths";
}
case 65825: {
return "ColorProfileDescription";
}
case 65826: {
return "SvgDocument";
}
case 65827: {
return "ColorProfileSignature";
}
case 65828: {
return "AllowDomains";
}
case 65829: {
return "EmbedXmpData";
}
case 65830: {
return "ColorProfileFileName";
}
case 65831: {
return "HasEmbeddedPhotoshopPaths";
}
case 65832: {
return "HasEmbeddedXmpData";
}
case 65833: {
return "XmpData";
}
case 65834: {
return "DoColormap";
}
case 65835: {
return "ProgressiveJpegScanType";
}
case 65836: {
return "RequestingUrl";
}
case 65840: {
return "JpegMaximumBytes";
}
case 66048: {
return "UserName";
}
case 66049: {
return "LoginName";
}
case 66050: {
return "Privilege";
}
case 66304: {
return "Name";
}
case 66305: {
return "Description";
}
case 66306: {
return "Notes";
}
case 66307: {
return "Caption";
}
case 66308: {
return "Title";
}
case 66560: {
return "Created";
}
case 66561: {
return "Entered";
}
case 66562: {
return "Modified";
}
case 66816: {
return "FileName";
}
case 66817: {
return "FolderName";
}
case 66818: {
return "FilePath";
}
case 66819: {
return "FileSize";
}
case 66820: {
return "ServerOwned";
}
case 66821: {
return "OriginalFileName";
}
case 67072: {
return "Application";
}
case 67073: {
return "Author";
}
case 67074: {
return "Revision";
}
case 67075: {
return "EntryId";
}
case 67076: {
return "VersionMajor";
}
case 67077: {
return "VersionMinor";
}
case 67078: {
return "ClientType";
}
case 67079: {
return "LowVersionMinor";
}
case 67080: {
return "HighVersionMinor";
}
case 67081: {
return "LowVersionMajor";
}
case 67082: {
return "HighVersionMajor";
}
case 67083: {
return "TransactionId";
}
case 67084: {
return "LineNumber";
}
case 67085: {
return "SourceFileName";
}
case 67086: {
return "FileId";
}
case 67328: {
return "TileXDim";
}
case 67329: {
return "TileYDim";
}
case 67330: {
return "MaxPipeBytes";
}
case 67331: {
return "Gamma";
}
case 67332: {
return "TilePadding";
}
case 67333: {
return "ViewClipPath";
}
case 67334: {
return "ViewBackground";
}
case 67335: {
return "ViewPriority";
}
case 67336: {
return "TileAddrReduce";
}
case 67337: {
return "TotalViews";
}
case 67338: {
return "MaxViews";
}
case 67339: {
return "ViewId";
}
case 67340: {
return "StateId";
}
case 67341: {
return "ViewPixelType";
}
case 67342: {
return "ViewProfile";
}
case 67343: {
return "ViewBackgroundPixel";
}
case 67344: {
return "XScale";
}
case 67345: {
return "YScale";
}
case 67346: {
return "ViewProfileUri";
}
case 67584: {
return "WatermarkCreatorId";
}
case 67585: {
return "WatermarkCreatorPin";
}
case 67586: {
return "WatermarkDistributorId";
}
case 67587: {
return "WatermarkDistributorPin";
}
case 67588: {
return "WatermarkImageId";
}
case 67589: {
return "WatermarkTransactionId";
}
case 67590: {
return "WatermarkCopyright1";
}
case 67591: {
return "WatermarkCopyright2";
}
case 67592: {
return "WatermarkAdult";
}
case 67593: {
return "WatermarkRestricted";
}
case 67594: {
return "WatermarkCopyProtected";
}
case 67595: {
return "WatermarkDurability";
}
case 67596: {
return "WatermarkSourceResolution";
}
case 67597: {
return "WatermarkTargetResolution";
}
case 67598: {
return "WatermarkType";
}
case 67599: {
return "WatermarkChroma";
}
case 1048576: {
return "ImageSavePriority";
}
case 1048577: {
return "InfoFilePath";
}
case 1048578: {
return "InfoFileData";
}
case 2097408: {
return "ConfigTempDirectory";
}
case 2097409: {
return "ConfigSaveDirectory";
}
case 2097410: {
return "ConfigCacheServerUrl";
}
case 2097411: {
return "ConfigLog";
}
case 2097412: {
return "ConfigTcpPort";
}
case 2097413: {
return "ConfigSVGTcpPort";
}
case 2097414: {
return "ConfigHostName";
}
case 2097415: {
return "ConfigAcceptExOutstanding";
}
case 2097416: {
return "ConfigAffinityMask";
}
case 2097417: {
return "ConfigClientInitTimeout";
}
case 2097418: {
return "ConfigViewIdleTimeout";
}
case 2097419: {
return "ConfigSaveAutoReleaseTimeout";
}
case 2097420: {
return "ConfigTextFaceCacheSize";
}
case 2097421: {
return "ConfigResampleKernelCacheSize";
}
case 2097422: {
return "ConfigImageCacheSize";
}
case 2097423: {
return "ConfigLookupFonts";
}
case 2097424: {
return "ConfigUseSplinesForBicubicResampler";
}
case 2097425: {
return "ConfigUseHighQualityAutoDownSampler";
}
case 2097426: {
return "ConfigMaxNonDsfSize";
}
case 2097427: {
return "ConfigMaxMessageSize";
}
case 2097428: {
return "ConfigPhysicalMemory";
}
case 2097429: {
return "ConfigWorkerThreads";
}
case 2097430: {
return "ConfigIrMaxNonPyrVignetteSize";
}
case 2097431: {
return "ConfigIrMaxDefaultVisibleObjects";
}
case 2097432: {
return "ConfigIrMaxTextureSizeFactor";
}
case 2097433: {
return "ConfigTraceClient";
}
case 2097434: {
return "ConfigTraceStatsInterval";
}
case 2097435: {
return "ConfigRootPath";
}
case 2097436: {
return "ConfigPerspectiveSize";
}
case 2162688: {
return "KBytesActive";
}
case 2162689: {
return "KBytesPurgeable";
}
case 2162690: {
return "ServerOSName";
}
case 2162691: {
return "KBytesVirtual";
}
case 2162692: {
return "KBytesResident";
}
case 2162693: {
return "KBytesLargestVirtualFreeBlock";
}
case 2162694: {
return "KBytesInactive";
}
case 3145729: {
return "TextColor";
}
case 3145730: {
return "TextBgColor";
}
case 3145731: {
return "TextHalign";
}
case 3145732: {
return "TextValign";
}
case 3145733: {
return "TextAntialias";
}
case 3145734: {
return "TextCustDir";
}
case 3145735: {
return "TextXDpi";
}
case 3145736: {
return "TextYDpi";
}
case 3145737: {
return "TextFitMode";
}
case 3145738: {
return "TextRgbOutputColorProfile";
}
case 3145739: {
return "TextCmykOutputColorProfile";
}
case 3145740: {
return "TextGrayOutputColorProfile";
}
case 3145741: {
return "TextAllowLineBreak";
}
case 3145742: {
return "TextAllowSyntheticFonts";
}
case 3145743: {
return "TextAllowBreakOnNonSpace";
}
case 3145744: {
return "TextIgnoreLeadingAndTrailingParagraphs";
}
case 3145745: {
return "TextApplyXInsetMargin";
}
case 3145746: {
return "TextApplyYInsetMargin";
}
case 3145747: {
return "TextAllowVerticalAlignment";
}
case 3145748: {
return "TextAllowCopyFitting";
}
case 3145749: {
return "TextRgbInputColorProfile";
}
case 3145750: {
return "TextCmykInputColorProfile";
}
case 3145751: {
return "TextGrayInputColorProfile";
}
case 3145752: {
return "TextRenderIntent";
}
case 3145753: {
return "TextBlackPointCompensation";
}
case 3145754: {
return "TextDither";
}
case 4194305: {
return "AnchorText";
}
case 4194306: {
return "AnchorTextDefaultFont";
}
case 4194307: {
return "AnchorTextFontName";
}
case 4194308: {
return "AnchorTextFontFile";
}
case 4194309: {
return "AnchorTextFontMetricsFile";
}
case 4194310: {
return "AnchorTextKerningTable";
}
case 4194311: {
return "AnchorTextIsBold";
}
case 4194312: {
return "AnchorTextIsItalic";
}
case 4194313: {
return "AnchorRtfErrorId";
}
case 4194314: {
return "AnchorRtfError";
}
case 4194315: {
return "AnchorRtfCharacterNumber";
}
case 4194316: {
return "AnchorTextType";
}
case 4194317: {
return "AnchorTextPath";
}
case 4194318: {
return "AnchorTextPathExclusion";
}
case 4194319: {
return "AnchorTextFlowType";
}
case 4194320: {
return "AnchorTextLayoutType";
}
case 5242880: {
return "ImageRendering";
}
case 5242881: {
return "ImageRenderingSchema";
}
case 5242896: {
return "VignetteName";
}
case 5242897: {
return "VignetteVersion";
}
case 5242899: {
return "VignetteDefaultObject";
}
case 5242901: {
return "VignetteMD5";
}
case 5242902: {
return "VignetteMinScale";
}
case 5242903: {
return "VignetteMaxScale";
}
case 5242904: {
return "VignetteResolutionMin";
}
case 5242905: {
return "VignetteResolutionMax";
}
case 5242906: {
return "VignetteResolutionAvg";
}
case 5242907: {
return "VignettePreviousObject";
}
case 5242908: {
return "VignetteObject";
}
case 5242909: {
return "VignetteObjectX";
}
case 5242910: {
return "VignetteObjectY";
}
case 5242911: {
return "VignetteObjectLevel";
}
case 5242912: {
return "VignetteViewObject";
}
case 5242913: {
return "VignetteViewObjectIdent";
}
case 5242914: {
return "VignetteViewObjectZorder";
}
case 5242915: {
return "VignetteViewObjectAttributes";
}
case 5242916: {
return "VignetteViewNumObjects";
}
case 5242917: {
return "VignetteViewNumOverlapping";
}
case 5242918: {
return "VignetteViewNumRenderable";
}
case 5242919: {
return "VignetteViewNumTexturable";
}
case 5242920: {
return "VignetteViewNumVisible";
}
case 5242921: {
return "VignetteViewObjectMaskX";
}
case 5242922: {
return "VignetteViewObjectMaskY";
}
case 5242923: {
return "VignetteViewObjectMaskWidth";
}
case 5242924: {
return "VignetteViewObjectMaskHeight";
}
case 5242925: {
return "VignetteViewObjectResolution";
}
case 5242928: {
return "MaterialAlign";
}
case 5242929: {
return "MaterialBgc";
}
case 5242930: {
return "MaterialColor";
}
case 5242931: {
return "MaterialGloss";
}
case 5242932: {
return "MaterialType";
}
case 5242933: {
return "MaterialOpacity";
}
case 5242934: {
return "MaterialQuality";
}
case 5242935: {
return "MaterialRoughness";
}
case 5242936: {
return "MaterialSharpen";
}
case 5242937: {
return "MaterialIllum";
}
case 5242938: {
return "MaterialRenderConfig";
}
case 5242939: {
return "MaterialId";
}
case 5242944: {
return "MaterialMatch";
}
case 5242945: {
return "MaterialResolution";
}
case 5242946: {
return "MaterialRotate";
}
case 5242947: {
return "MaterialXOrigin";
}
case 5242948: {
return "MaterialYOrigin";
}
case 5242949: {
return "MaterialXPos";
}
case 5242950: {
return "MaterialYPos";
}
case 5242951: {
return "MaterialMinResolution";
}
case 5242952: {
return "MaterialXOriginNorm";
}
case 5242953: {
return "MaterialYOriginNorm";
}
case 5242954: {
return "MaterialXPosAbs";
}
case 5242955: {
return "MaterialYPosAbs";
}
case 5242960: {
return "MaterialObjectXDim";
}
case 5242961: {
return "MaterialObjectYDim";
}
case 5242962: {
return "MaterialObjectThickness";
}
case 5242963: {
return "MaterialObjectMaxThickness";
}
case 5242964: {
return "MaterialObjectMaxArea";
}
case 5242976: {
return "MaterialStyleFilename";
}
case 5242978: {
return "MaterialRenderGlass";
}
case 5242992: {
return "MaterialGroutWidth";
}
case 5242993: {
return "MaterialNewGroutWidth";
}
case 5242994: {
return "MaterialNewGroutColor";
}
case 5243008: {
return "VignetteDefaultVisibility";
}
case 5243009: {
return "VignetteObjFail";
}
case 5243010: {
return "VignetteSelFail";
}
case 5243011: {
return "VignetteRenderScene";
}
case 5243024: {
return "VignetteNumOverlapping";
}
case 5243025: {
return "VignetteMaxOverlapping";
}
case 5243026: {
return "VignetteType";
}
case 5243040: {
return "MaterialEmbedName";
}
case 5243041: {
return "MaterialEmbedIdx";
}
case 5243042: {
return "MaterialEmbedVignette";
}
case 5243056: {
return "MaterialForceTemplate";
}
case 5243072: {
return "VignetteViewDecalXPos";
}
case 5243073: {
return "VignetteViewDecalYPos";
}
case 5243074: {
return "VignetteViewDecalXPosAbs";
}
case 5243075: {
return "VignetteViewDecalYPosAbs";
}
case 5243076: {
return "VignetteViewDecalUAngle";
}
case 5243077: {
return "VignetteViewDecalVAngle";
}
case 5243078: {
return "VignetteViewDecalUScale";
}
case 5243079: {
return "VignetteViewDecalVScale";
}
case 5243088: {
return "RenderViewCamera";
}
case 5243089: {
return "RenderViewScale";
}
case 5243090: {
return "RenderViewWidth";
}
case 5243091: {
return "RenderViewHeight";
}
case 5243092: {
return "RenderViewMask";
}
case 5243093: {
return "RenderViewObject";
}
case 5243104: {
return "TextureEncoding";
}
case 5243105: {
return "TextureResolution";
}
case 5243106: {
return "TextureGroutWidth";
}
}
return "??? Unknown IppPropId";
}
public static int valueStatic(String s) {
if (s.equals("None")) {
return 0;
}
if (s.equals("XDim")) {
return 65792;
}
if (s.equals("YDim")) {
return 65793;
}
if (s.equals("XDpi")) {
return 65794;
}
if (s.equals("YDpi")) {
return 65795;
}
if (s.equals("ColorModel")) {
return 65796;
}
if (s.equals("PixelType")) {
return 65797;
}
if (s.equals("ImageFormat")) {
return 65798;
}
if (s.equals("ImageLayout")) {
return 65799;
}
if (s.equals("ImageEncoding")) {
return 65800;
}
if (s.equals("JpegQuality")) {
return 65801;
}
if (s.equals("DoAlpha")) {
return 65802;
}
if (s.equals("HasAlpha")) {
return 65803;
}
if (s.equals("ServerScaling")) {
return 65804;
}
if (s.equals("ImageHasSecondary")) {
return 65805;
}
if (s.equals("PixelDepth")) {
return 65806;
}
if (s.equals("MaxScale")) {
return 65807;
}
if (s.equals("MinScale")) {
return 65808;
}
if (s.equals("JpegIncludeTable")) {
return 65809;
}
if (s.equals("XPos")) {
return 65810;
}
if (s.equals("YPos")) {
return 65811;
}
if (s.equals("ImagePixelType")) {
return 65812;
}
if (s.equals("ImageInputProfile")) {
return 65813;
}
if (s.equals("JpegDownsampleChrominance")) {
return 65814;
}
if (s.equals("RequestAlphaOnly")) {
return 65815;
}
if (s.equals("EmbedIccProfile")) {
return 65816;
}
if (s.equals("WatermarkImage")) {
return 65817;
}
if (s.equals("NumberColormapEntries")) {
return 65818;
}
if (s.equals("ColormapEntries")) {
return 65819;
}
if (s.equals("ColormapType")) {
return 65820;
}
if (s.equals("DitherType")) {
return 65821;
}
if (s.equals("ColorProfileMismatchAction")) {
return 65822;
}
if (s.equals("HasEmbeddedColorProfile")) {
return 65823;
}
if (s.equals("EmbedPhotoshopPaths")) {
return 65824;
}
if (s.equals("ColorProfileDescription")) {
return 65825;
}
if (s.equals("SvgDocument")) {
return 65826;
}
if (s.equals("ColorProfileSignature")) {
return 65827;
}
if (s.equals("AllowDomains")) {
return 65828;
}
if (s.equals("EmbedXmpData")) {
return 65829;
}
if (s.equals("ColorProfileFileName")) {
return 65830;
}
if (s.equals("HasEmbeddedPhotoshopPaths")) {
return 65831;
}
if (s.equals("HasEmbeddedXmpData")) {
return 65832;
}
if (s.equals("XmpData")) {
return 65833;
}
if (s.equals("DoColormap")) {
return 65834;
}
if (s.equals("ProgressiveJpegScanType")) {
return 65835;
}
if (s.equals("RequestingUrl")) {
return 65836;
}
if (s.equals("JpegMaximumBytes")) {
return 65840;
}
if (s.equals("UserName")) {
return 66048;
}
if (s.equals("LoginName")) {
return 66049;
}
if (s.equals("Privilege")) {
return 66050;
}
if (s.equals("Name")) {
return 66304;
}
if (s.equals("Description")) {
return 66305;
}
if (s.equals("Notes")) {
return 66306;
}
if (s.equals("Caption")) {
return 66307;
}
if (s.equals("Title")) {
return 66308;
}
if (s.equals("Created")) {
return 66560;
}
if (s.equals("Entered")) {
return 66561;
}
if (s.equals("Modified")) {
return 66562;
}
if (s.equals("FileName")) {
return 66816;
}
if (s.equals("FolderName")) {
return 66817;
}
if (s.equals("FilePath")) {
return 66818;
}
if (s.equals("FileSize")) {
return 66819;
}
if (s.equals("ServerOwned")) {
return 66820;
}
if (s.equals("OriginalFileName")) {
return 66821;
}
if (s.equals("Application")) {
return 67072;
}
if (s.equals("Author")) {
return 67073;
}
if (s.equals("Revision")) {
return 67074;
}
if (s.equals("EntryId")) {
return 67075;
}
if (s.equals("VersionMajor")) {
return 67076;
}
if (s.equals("VersionMinor")) {
return 67077;
}
if (s.equals("ClientType")) {
return 67078;
}
if (s.equals("LowVersionMinor")) {
return 67079;
}
if (s.equals("HighVersionMinor")) {
return 67080;
}
if (s.equals("LowVersionMajor")) {
return 67081;
}
if (s.equals("HighVersionMajor")) {
return 67082;
}
if (s.equals("TransactionId")) {
return 67083;
}
if (s.equals("LineNumber")) {
return 67084;
}
if (s.equals("SourceFileName")) {
return 67085;
}
if (s.equals("FileId")) {
return 67086;
}
if (s.equals("TileXDim")) {
return 67328;
}
if (s.equals("TileYDim")) {
return 67329;
}
if (s.equals("MaxPipeBytes")) {
return 67330;
}
if (s.equals("Gamma")) {
return 67331;
}
if (s.equals("TilePadding")) {
return 67332;
}
if (s.equals("ViewClipPath")) {
return 67333;
}
if (s.equals("ViewBackground")) {
return 67334;
}
if (s.equals("ViewPriority")) {
return 67335;
}
if (s.equals("TileAddrReduce")) {
return 67336;
}
if (s.equals("TotalViews")) {
return 67337;
}
if (s.equals("MaxViews")) {
return 67338;
}
if (s.equals("ViewId")) {
return 67339;
}
if (s.equals("StateId")) {
return 67340;
}
if (s.equals("ViewPixelType")) {
return 67341;
}
if (s.equals("ViewProfile")) {
return 67342;
}
if (s.equals("ViewBackgroundPixel")) {
return 67343;
}
if (s.equals("XScale")) {
return 67344;
}
if (s.equals("YScale")) {
return 67345;
}
if (s.equals("ViewProfileUri")) {
return 67346;
}
if (s.equals("WatermarkCreatorId")) {
return 67584;
}
if (s.equals("WatermarkCreatorPin")) {
return 67585;
}
if (s.equals("WatermarkDistributorId")) {
return 67586;
}
if (s.equals("WatermarkDistributorPin")) {
return 67587;
}
if (s.equals("WatermarkImageId")) {
return 67588;
}
if (s.equals("WatermarkTransactionId")) {
return 67589;
}
if (s.equals("WatermarkCopyright1")) {
return 67590;
}
if (s.equals("WatermarkCopyright2")) {
return 67591;
}
if (s.equals("WatermarkAdult")) {
return 67592;
}
if (s.equals("WatermarkRestricted")) {
return 67593;
}
if (s.equals("WatermarkCopyProtected")) {
return 67594;
}
if (s.equals("WatermarkDurability")) {
return 67595;
}
if (s.equals("WatermarkSourceResolution")) {
return 67596;
}
if (s.equals("WatermarkTargetResolution")) {
return 67597;
}
if (s.equals("WatermarkType")) {
return 67598;
}
if (s.equals("WatermarkChroma")) {
return 67599;
}
if (s.equals("ImageSavePriority")) {
return 1048576;
}
if (s.equals("InfoFilePath")) {
return 1048577;
}
if (s.equals("InfoFileData")) {
return 1048578;
}
if (s.equals("ConfigTempDirectory")) {
return 2097408;
}
if (s.equals("ConfigSaveDirectory")) {
return 2097409;
}
if (s.equals("ConfigCacheServerUrl")) {
return 2097410;
}
if (s.equals("ConfigLog")) {
return 2097411;
}
if (s.equals("ConfigTcpPort")) {
return 2097412;
}
if (s.equals("ConfigSVGTcpPort")) {
return 2097413;
}
if (s.equals("ConfigHostName")) {
return 2097414;
}
if (s.equals("ConfigAcceptExOutstanding")) {
return 2097415;
}
if (s.equals("ConfigAffinityMask")) {
return 2097416;
}
if (s.equals("ConfigClientInitTimeout")) {
return 2097417;
}
if (s.equals("ConfigViewIdleTimeout")) {
return 2097418;
}
if (s.equals("ConfigSaveAutoReleaseTimeout")) {
return 2097419;
}
if (s.equals("ConfigTextFaceCacheSize")) {
return 2097420;
}
if (s.equals("ConfigResampleKernelCacheSize")) {
return 2097421;
}
if (s.equals("ConfigImageCacheSize")) {
return 2097422;
}
if (s.equals("ConfigLookupFonts")) {
return 2097423;
}
if (s.equals("ConfigUseSplinesForBicubicResampler")) {
return 2097424;
}
if (s.equals("ConfigUseHighQualityAutoDownSampler")) {
return 2097425;
}
if (s.equals("ConfigMaxNonDsfSize")) {
return 2097426;
}
if (s.equals("ConfigMaxMessageSize")) {
return 2097427;
}
if (s.equals("ConfigPhysicalMemory")) {
return 2097428;
}
if (s.equals("ConfigWorkerThreads")) {
return 2097429;
}
if (s.equals("ConfigIrMaxNonPyrVignetteSize")) {
return 2097430;
}
if (s.equals("ConfigIrMaxDefaultVisibleObjects")) {
return 2097431;
}
if (s.equals("ConfigIrMaxTextureSizeFactor")) {
return 2097432;
}
if (s.equals("ConfigTraceClient")) {
return 2097433;
}
if (s.equals("ConfigTraceStatsInterval")) {
return 2097434;
}
if (s.equals("ConfigRootPath")) {
return 2097435;
}
if (s.equals("ConfigPerspectiveSize")) {
return 2097436;
}
if (s.equals("KBytesActive")) {
return 2162688;
}
if (s.equals("KBytesPurgeable")) {
return 2162689;
}
if (s.equals("ServerOSName")) {
return 2162690;
}
if (s.equals("KBytesVirtual")) {
return 2162691;
}
if (s.equals("KBytesResident")) {
return 2162692;
}
if (s.equals("KBytesLargestVirtualFreeBlock")) {
return 2162693;
}
if (s.equals("KBytesInactive")) {
return 2162694;
}
if (s.equals("TextColor")) {
return 3145729;
}
if (s.equals("TextBgColor")) {
return 3145730;
}
if (s.equals("TextHalign")) {
return 3145731;
}
if (s.equals("TextValign")) {
return 3145732;
}
if (s.equals("TextAntialias")) {
return 3145733;
}
if (s.equals("TextCustDir")) {
return 3145734;
}
if (s.equals("TextXDpi")) {
return 3145735;
}
if (s.equals("TextYDpi")) {
return 3145736;
}
if (s.equals("TextFitMode")) {
return 3145737;
}
if (s.equals("TextRgbOutputColorProfile")) {
return 3145738;
}
if (s.equals("TextCmykOutputColorProfile")) {
return 3145739;
}
if (s.equals("TextGrayOutputColorProfile")) {
return 3145740;
}
if (s.equals("TextAllowLineBreak")) {
return 3145741;
}
if (s.equals("TextAllowSyntheticFonts")) {
return 3145742;
}
if (s.equals("TextAllowBreakOnNonSpace")) {
return 3145743;
}
if (s.equals("TextIgnoreLeadingAndTrailingParagraphs")) {
return 3145744;
}
if (s.equals("TextApplyXInsetMargin")) {
return 3145745;
}
if (s.equals("TextApplyYInsetMargin")) {
return 3145746;
}
if (s.equals("TextAllowVerticalAlignment")) {
return 3145747;
}
if (s.equals("TextAllowCopyFitting")) {
return 3145748;
}
if (s.equals("TextRgbInputColorProfile")) {
return 3145749;
}
if (s.equals("TextCmykInputColorProfile")) {
return 3145750;
}
if (s.equals("TextGrayInputColorProfile")) {
return 3145751;
}
if (s.equals("TextRenderIntent")) {
return 3145752;
}
if (s.equals("TextBlackPointCompensation")) {
return 3145753;
}
if (s.equals("TextDither")) {
return 3145754;
}
if (s.equals("AnchorText")) {
return 4194305;
}
if (s.equals("AnchorTextDefaultFont")) {
return 4194306;
}
if (s.equals("AnchorTextFontName")) {
return 4194307;
}
if (s.equals("AnchorTextFontFile")) {
return 4194308;
}
if (s.equals("AnchorTextFontMetricsFile")) {
return 4194309;
}
if (s.equals("AnchorTextKerningTable")) {
return 4194310;
}
if (s.equals("AnchorTextIsBold")) {
return 4194311;
}
if (s.equals("AnchorTextIsItalic")) {
return 4194312;
}
if (s.equals("AnchorRtfErrorId")) {
return 4194313;
}
if (s.equals("AnchorRtfError")) {
return 4194314;
}
if (s.equals("AnchorRtfCharacterNumber")) {
return 4194315;
}
if (s.equals("AnchorTextType")) {
return 4194316;
}
if (s.equals("AnchorTextPath")) {
return 4194317;
}
if (s.equals("AnchorTextPathExclusion")) {
return 4194318;
}
if (s.equals("AnchorTextFlowType")) {
return 4194319;
}
if (s.equals("AnchorTextLayoutType")) {
return 4194320;
}
if (s.equals("ImageRendering")) {
return 5242880;
}
if (s.equals("ImageRenderingSchema")) {
return 5242881;
}
if (s.equals("VignetteName")) {
return 5242896;
}
if (s.equals("VignetteVersion")) {
return 5242897;
}
if (s.equals("VignetteDefaultObject")) {
return 5242899;
}
if (s.equals("VignetteMD5")) {
return 5242901;
}
if (s.equals("VignetteMinScale")) {
return 5242902;
}
if (s.equals("VignetteMaxScale")) {
return 5242903;
}
if (s.equals("VignetteResolutionMin")) {
return 5242904;
}
if (s.equals("VignetteResolutionMax")) {
return 5242905;
}
if (s.equals("VignetteResolutionAvg")) {
return 5242906;
}
if (s.equals("VignettePreviousObject")) {
return 5242907;
}
if (s.equals("VignetteObject")) {
return 5242908;
}
if (s.equals("VignetteObjectX")) {
return 5242909;
}
if (s.equals("VignetteObjectY")) {
return 5242910;
}
if (s.equals("VignetteObjectLevel")) {
return 5242911;
}
if (s.equals("VignetteViewObject")) {
return 5242912;
}
if (s.equals("VignetteViewObjectIdent")) {
return 5242913;
}
if (s.equals("VignetteViewObjectZorder")) {
return 5242914;
}
if (s.equals("VignetteViewObjectAttributes")) {
return 5242915;
}
if (s.equals("VignetteViewNumObjects")) {
return 5242916;
}
if (s.equals("VignetteViewNumOverlapping")) {
return 5242917;
}
if (s.equals("VignetteViewNumRenderable")) {
return 5242918;
}
if (s.equals("VignetteViewNumTexturable")) {
return 5242919;
}
if (s.equals("VignetteViewNumVisible")) {
return 5242920;
}
if (s.equals("VignetteViewObjectMaskX")) {
return 5242921;
}
if (s.equals("VignetteViewObjectMaskY")) {
return 5242922;
}
if (s.equals("VignetteViewObjectMaskWidth")) {
return 5242923;
}
if (s.equals("VignetteViewObjectMaskHeight")) {
return 5242924;
}
if (s.equals("VignetteViewObjectResolution")) {
return 5242925;
}
if (s.equals("MaterialAlign")) {
return 5242928;
}
if (s.equals("MaterialBgc")) {
return 5242929;
}
if (s.equals("MaterialColor")) {
return 5242930;
}
if (s.equals("MaterialGloss")) {
return 5242931;
}
if (s.equals("MaterialType")) {
return 5242932;
}
if (s.equals("MaterialOpacity")) {
return 5242933;
}
if (s.equals("MaterialQuality")) {
return 5242934;
}
if (s.equals("MaterialRoughness")) {
return 5242935;
}
if (s.equals("MaterialSharpen")) {
return 5242936;
}
if (s.equals("MaterialIllum")) {
return 5242937;
}
if (s.equals("MaterialRenderConfig")) {
return 5242938;
}
if (s.equals("MaterialId")) {
return 5242939;
}
if (s.equals("MaterialMatch")) {
return 5242944;
}
if (s.equals("MaterialResolution")) {
return 5242945;
}
if (s.equals("MaterialRotate")) {
return 5242946;
}
if (s.equals("MaterialXOrigin")) {
return 5242947;
}
if (s.equals("MaterialYOrigin")) {
return 5242948;
}
if (s.equals("MaterialXPos")) {
return 5242949;
}
if (s.equals("MaterialYPos")) {
return 5242950;
}
if (s.equals("MaterialMinResolution")) {
return 5242951;
}
if (s.equals("MaterialXOriginNorm")) {
return 5242952;
}
if (s.equals("MaterialYOriginNorm")) {
return 5242953;
}
if (s.equals("MaterialXPosAbs")) {
return 5242954;
}
if (s.equals("MaterialYPosAbs")) {
return 5242955;
}
if (s.equals("MaterialObjectXDim")) {
return 5242960;
}
if (s.equals("MaterialObjectYDim")) {
return 5242961;
}
if (s.equals("MaterialObjectThickness")) {
return 5242962;
}
if (s.equals("MaterialObjectMaxThickness")) {
return 5242963;
}
if (s.equals("MaterialObjectMaxArea")) {
return 5242964;
}
if (s.equals("MaterialStyleFilename")) {
return 5242976;
}
if (s.equals("MaterialRenderGlass")) {
return 5242978;
}
if (s.equals("MaterialGroutWidth")) {
return 5242992;
}
if (s.equals("MaterialNewGroutWidth")) {
return 5242993;
}
if (s.equals("MaterialNewGroutColor")) {
return 5242994;
}
if (s.equals("VignetteDefaultVisibility")) {
return 5243008;
}
if (s.equals("VignetteObjFail")) {
return 5243009;
}
if (s.equals("VignetteSelFail")) {
return 5243010;
}
if (s.equals("VignetteRenderScene")) {
return 5243011;
}
if (s.equals("VignetteNumOverlapping")) {
return 5243024;
}
if (s.equals("VignetteMaxOverlapping")) {
return 5243025;
}
if (s.equals("VignetteType")) {
return 5243026;
}
if (s.equals("MaterialEmbedName")) {
return 5243040;
}
if (s.equals("MaterialEmbedIdx")) {
return 5243041;
}
if (s.equals("MaterialEmbedVignette")) {
return 5243042;
}
if (s.equals("MaterialForceTemplate")) {
return 5243056;
}
if (s.equals("VignetteViewDecalXPos")) {
return 5243072;
}
if (s.equals("VignetteViewDecalYPos")) {
return 5243073;
}
if (s.equals("VignetteViewDecalXPosAbs")) {
return 5243074;
}
if (s.equals("VignetteViewDecalYPosAbs")) {
return 5243075;
}
if (s.equals("VignetteViewDecalUAngle")) {
return 5243076;
}
if (s.equals("VignetteViewDecalVAngle")) {
return 5243077;
}
if (s.equals("VignetteViewDecalUScale")) {
return 5243078;
}
if (s.equals("VignetteViewDecalVScale")) {
return 5243079;
}
if (s.equals("RenderViewCamera")) {
return 5243088;
}
if (s.equals("RenderViewScale")) {
return 5243089;
}
if (s.equals("RenderViewWidth")) {
return 5243090;
}
if (s.equals("RenderViewHeight")) {
return 5243091;
}
if (s.equals("RenderViewMask")) {
return 5243092;
}
if (s.equals("RenderViewObject")) {
return 5243093;
}
if (s.equals("TextureEncoding")) {
return 5243104;
}
if (s.equals("TextureResolution")) {
return 5243105;
}
if (s.equals("TextureGroutWidth")) {
return 5243106;
}
Ipp.Assert(false, "IppPropId enum");
return -1;
}
public static int minValueStatic() {
return 0;
}
public static int maxValueStatic() {
return 5243106;
}
public static String[] stringsStatic() {
return strings_;
}
public int minValue() {
return IppPropId.minValueStatic();
}
public int maxValue() {
return IppPropId.maxValueStatic();
}
public int value(String s) {
return IppPropId.valueStatic(s);
}
public String string(int e) {
return IppPropId.stringStatic(e);
}
public String[] strings() {
return IppPropId.stringsStatic();
}
public static void Print(Writer tf, String label, int it) throws IOException {
tf.write(label + "IppPropId." + IppPropId.stringStatic(it) + "\n");
}
public static void PrintArray(Writer tf, String label, int[] it) throws IOException {
String ll = label + "IppPropId Array, length: ";
tf.write(ll);
if (it == null) {
tf.write("NULL!!!\n");
return;
}
tf.write("" + it.length + "\n");
for (int i = 0; i < it.length; ++i) {
ll = label + "IppPropId[" + String.valueOf(i) + "]: ";
IppPropId.Print(tf, ll, it[i]);
}
}
}