Lines Matching defs:propName

214 	public void deleteProperty(String schemaNS, String propName)
219 ParameterAsserts.assertPropName(propName);
221 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
239 public void deleteQualifier(String schemaNS, String propName, String qualNS, String qualName)
245 ParameterAsserts.assertPropName(propName);
247 String qualPath = propName + XMPPathFactory.composeQualifierPath(qualNS, qualName);
283 public boolean doesPropertyExist(String schemaNS, String propName)
288 ParameterAsserts.assertPropName(propName);
290 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
346 public boolean doesQualifierExist(String schemaNS, String propName, String qualNS,
353 ParameterAsserts.assertPropName(propName);
356 return doesPropertyExist(schemaNS, propName + path);
638 public XMPProperty getProperty(String schemaNS, String propName) throws XMPException
640 return getProperty(schemaNS, propName, VALUE_STRING);
654 * @param propName
662 protected XMPProperty getProperty(String schemaNS, String propName, int valueType)
666 ParameterAsserts.assertPropName(propName);
668 final XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
720 * @param propName
729 protected Object getPropertyObject(String schemaNS, String propName, int valueType)
733 ParameterAsserts.assertPropName(propName);
735 final XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
758 public Boolean getPropertyBoolean(String schemaNS, String propName) throws XMPException
760 return (Boolean) getPropertyObject(schemaNS, propName, VALUE_BOOLEAN);
768 public void setPropertyBoolean(String schemaNS, String propName, boolean propValue,
771 setProperty(schemaNS, propName, propValue ? TRUESTR : FALSESTR, options);
778 public void setPropertyBoolean(String schemaNS, String propName, boolean propValue)
781 setProperty(schemaNS, propName, propValue ? TRUESTR : FALSESTR, null);
788 public Integer getPropertyInteger(String schemaNS, String propName) throws XMPException
790 return (Integer) getPropertyObject(schemaNS, propName, VALUE_INTEGER);
797 public void setPropertyInteger(String schemaNS, String propName, int propValue,
800 setProperty(schemaNS, propName, new Integer(propValue), options);
807 public void setPropertyInteger(String schemaNS, String propName, int propValue)
810 setProperty(schemaNS, propName, new Integer(propValue), null);
817 public Long getPropertyLong(String schemaNS, String propName) throws XMPException
819 return (Long) getPropertyObject(schemaNS, propName, VALUE_LONG);
826 public void setPropertyLong(String schemaNS, String propName, long propValue,
829 setProperty(schemaNS, propName, new Long(propValue), options);
836 public void setPropertyLong(String schemaNS, String propName, long propValue)
839 setProperty(schemaNS, propName, new Long(propValue), null);
846 public Double getPropertyDouble(String schemaNS, String propName) throws XMPException
848 return (Double) getPropertyObject(schemaNS, propName, VALUE_DOUBLE);
855 public void setPropertyDouble(String schemaNS, String propName, double propValue,
858 setProperty(schemaNS, propName, new Double(propValue), options);
865 public void setPropertyDouble(String schemaNS, String propName, double propValue)
868 setProperty(schemaNS, propName, new Double(propValue), null);
875 public XMPDateTime getPropertyDate(String schemaNS, String propName) throws XMPException
877 return (XMPDateTime) getPropertyObject(schemaNS, propName, VALUE_DATE);
885 public void setPropertyDate(String schemaNS, String propName, XMPDateTime propValue,
888 setProperty(schemaNS, propName, propValue, options);
895 public void setPropertyDate(String schemaNS, String propName, XMPDateTime propValue)
898 setProperty(schemaNS, propName, propValue, null);
905 public Calendar getPropertyCalendar(String schemaNS, String propName) throws XMPException
907 return (Calendar) getPropertyObject(schemaNS, propName, VALUE_CALENDAR);
915 public void setPropertyCalendar(String schemaNS, String propName, Calendar propValue,
918 setProperty(schemaNS, propName, propValue, options);
925 public void setPropertyCalendar(String schemaNS, String propName, Calendar propValue)
928 setProperty(schemaNS, propName, propValue, null);
935 public byte[] getPropertyBase64(String schemaNS, String propName) throws XMPException
937 return (byte[]) getPropertyObject(schemaNS, propName, VALUE_BASE64);
944 public String getPropertyString(String schemaNS, String propName) throws XMPException
946 return (String) getPropertyObject(schemaNS, propName, VALUE_STRING);
953 public void setPropertyBase64(String schemaNS, String propName, byte[] propValue,
956 setProperty(schemaNS, propName, propValue, options);
963 public void setPropertyBase64(String schemaNS, String propName, byte[] propValue)
966 setProperty(schemaNS, propName, propValue, null);
974 public XMPProperty getQualifier(String schemaNS, String propName, String qualNS,
979 ParameterAsserts.assertPropName(propName);
981 String qualPath = propName + XMPPathFactory.composeQualifierPath(qualNS, qualName);
1023 public XMPIterator iterator(String schemaNS, String propName, IteratorOptions options)
1026 return new XMPIteratorImpl(this, schemaNS, propName, options);
1105 public void setProperty(String schemaNS, String propName, Object propValue,
1109 ParameterAsserts.assertPropName(propName);
1113 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
1130 public void setProperty(String schemaNS, String propName, Object propValue) throws XMPException
1132 setProperty(schemaNS, propName, propValue, null);
1141 public void setQualifier(String schemaNS, String propName, String qualNS, String qualName,
1145 ParameterAsserts.assertPropName(propName);
1147 if (!doesPropertyExist(schemaNS, propName))
1152 String qualPath = propName + XMPPathFactory.composeQualifierPath(qualNS, qualName);
1160 public void setQualifier(String schemaNS, String propName, String qualNS, String qualName,
1163 setQualifier(schemaNS, propName, qualNS, qualName, qualValue, null);