iTextSharp.xmp.options.IteratorOptions.DefineOptionName C# (CSharp) Method

DefineOptionName() protected method

protected DefineOptionName ( uint option ) : string
option uint
return string
        protected internal override string DefineOptionName(uint option) {
            switch (option) {
                case JUST_CHILDREN:
                    return "JUST_CHILDREN";
                case JUST_LEAFNODES:
                    return "JUST_LEAFNODES";
                case JUST_LEAFNAME:
                    return "JUST_LEAFNAME";
                case OMIT_QUALIFIERS:
                    return "OMIT_QUALIFIERS";
                default:
                    return null;
            }
        }
    }
IteratorOptions