• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java PropertyIdValue类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue的典型用法代码示例。如果您正苦于以下问题:Java PropertyIdValue类的具体用法?Java PropertyIdValue怎么用?Java PropertyIdValue使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



PropertyIdValue类属于org.wikidata.wdtk.datamodel.interfaces包,在下文中一共展示了PropertyIdValue类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: writePropertyStatisticsToFile

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
/**
 * Stores the gathered usage statistics about property uses to a CSV file.
 *
 * @param usageStatistics
 *            the statistics to store
 * @param fileName
 *            the name of the file to use
 */
private void writePropertyStatisticsToFile(UsageStatistics usageStatistics,
		String fileName) {
	try (PrintStream out = new PrintStream(
			ExampleHelpers.openExampleFileOuputStream(fileName))) {

		out.println("Property id,in statements,in qualifiers,in references,total");

		for (Entry<PropertyIdValue, Integer> entry : usageStatistics.propertyCountsMain
				.entrySet()) {
			int qCount = usageStatistics.propertyCountsQualifier.get(entry
					.getKey());
			int rCount = usageStatistics.propertyCountsReferences.get(entry
					.getKey());
			int total = entry.getValue() + qCount + rCount;
			out.println(entry.getKey().getId() + "," + entry.getValue()
					+ "," + qCount + "," + rCount + "," + total);
		}
	} catch (IOException e) {
		e.printStackTrace();
	}
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit-Examples,代码行数:30,代码来源:EntityStatisticsProcessor.java


示例2: writePropertyData

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
/**
 * Writes the data collected about properties to a file.
 */
private void writePropertyData() {
	try (PrintStream out = new PrintStream(
			ExampleHelpers.openExampleFileOuputStream("properties.csv"))) {

		out.println("Id" + ",Label" + ",Description" + ",URL" + ",Datatype"
				+ ",Uses in statements" + ",Items with such statements"
				+ ",Uses in statements with qualifiers"
				+ ",Uses in qualifiers" + ",Uses in references"
				+ ",Uses total" + ",Related properties");

		List<Entry<PropertyIdValue, PropertyRecord>> list = new ArrayList<Entry<PropertyIdValue, PropertyRecord>>(
				this.propertyRecords.entrySet());
		Collections.sort(list, new UsageRecordComparator());
		for (Entry<PropertyIdValue, PropertyRecord> entry : list) {
			printPropertyRecord(out, entry.getValue(), entry.getKey());
		}

	} catch (IOException e) {
		e.printStackTrace();
	}
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit-Examples,代码行数:25,代码来源:ClassPropertyUsageAnalyzer.java


示例3: StatementGroupImpl

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
/**
 * Constructor.
 *
 * @param statements
 *            a non-empty list of statements that use the same subject and
 *            main-snak property in their claim
 */
public StatementGroupImpl(List<Statement> statements) {
	Validate.notNull(statements, "List of statements cannot be null");
	Validate.notEmpty(statements, "List of statements cannot be empty");

	EntityIdValue subject = statements.get(0).getClaim().getSubject();
	PropertyIdValue property = statements.get(0).getClaim().getMainSnak()
			.getPropertyId();

	for (Statement s : statements) {
		if (!subject.equals(s.getClaim().getSubject())) {
			throw new IllegalArgumentException(
					"All statements in a statement group must use the same subject");
		}
		if (!property.equals(s.getClaim().getMainSnak().getPropertyId())) {
			throw new IllegalArgumentException(
					"All statements in a statement group must use the same main property");
		}
	}

	this.statements = statements;

}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:30,代码来源:StatementGroupImpl.java


示例4: equalityBasedOnContent

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test
public void equalityBasedOnContent() {
	Claim cDiffSubject, cDiffMainSnak, cDiffQualifiers;
	EntityIdValue subject2 = new ItemIdValueImpl("Q43",
			"http://wikidata.org/entity/");
	PropertyIdValue property = new PropertyIdValueImpl(
			"P43", "http://wikidata.org/entity/");
	ValueSnak mainSnak2 = new ValueSnakImpl(property, subject2);

	cDiffSubject = new ClaimImpl(subject2, mainSnak,
			Collections.<SnakGroup> emptyList());
	cDiffMainSnak = new ClaimImpl(subject, mainSnak2,
			Collections.<SnakGroup> emptyList());
	cDiffQualifiers = new ClaimImpl(subject, mainSnak,
			Collections.<SnakGroup> singletonList(new SnakGroupImpl(
					Collections.<Snak> singletonList(mainSnak))));

	assertEquals(c1, c1);
	assertEquals(c1, c2);
	assertThat(c1, not(equalTo(cDiffSubject)));
	assertThat(c1, not(equalTo(cDiffMainSnak)));
	assertThat(c1, not(equalTo(cDiffQualifiers)));
	assertThat(c1, not(equalTo(null)));
	assertFalse(c1.equals(this));
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:26,代码来源:ClaimImplTest.java


示例5: getRdfValue

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Override
public Value getRdfValue(EntityIdValue value,
		PropertyIdValue propertyIdValue, boolean simple) {
	String datatype = this.propertyRegister
			.setPropertyTypeFromEntityIdValue(propertyIdValue, value);

	switch (datatype) {
	case DatatypeIdValue.DT_ITEM:
		if (simple) {
			this.rdfConversionBuffer.addObjectProperty(propertyIdValue);
			return this.rdfWriter.getUri(value.getIri());
		} else {
			return null; // or blank node
		}
	case DatatypeIdValue.DT_PROPERTY:
		if (simple) {
			this.rdfConversionBuffer.addObjectProperty(propertyIdValue);
			return this.rdfWriter.getUri(value.getIri());
		} else {
			return null; // or blank node
		}
	default:
		logIncompatibleValueError(propertyIdValue, datatype, "entity");
		return null;
	}
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:27,代码来源:EntityIdValueConverter.java


示例6: getRdfValue

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Override
public Value getRdfValue(GlobeCoordinatesValue value,
		PropertyIdValue propertyIdValue, boolean simple) {
	String datatype = this.propertyRegister
			.setPropertyTypeFromGlobeCoordinatesValue(propertyIdValue,
					value);
	switch (datatype) {
	case DatatypeIdValue.DT_GLOBE_COORDINATES:
		if (simple) {
			return getSimpleGeoValue(value);
		} else {
			URI valueUri = this.rdfWriter.getUri(Vocabulary
					.getGlobeCoordinatesValueUri(value,
							this.propertyRegister.getUriPrefix()));
			this.rdfConversionBuffer.addObjectProperty(propertyIdValue);
			addValue(value, valueUri);

			return valueUri;
		}
	default:
		logIncompatibleValueError(propertyIdValue, datatype,
				"globe coordinates");
		return null;
	}
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:26,代码来源:GlobeCoordinatesValueConverter.java


示例7: testUriPatternStatement

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test
public void testUriPatternStatement() throws RDFHandlerException,
		RDFParseException, IOException {

	ItemIdValue subject = Datamodel.makeItemIdValue("Q100",
			Datamodel.SITE_WIKIDATA);
	PropertyIdValue propertyId = Datamodel
			.makeWikidataPropertyIdValue("P434");
	StringValue value = Datamodel
			.makeStringValue("d735497b-25f9-4503-8fb5-f50150730c18");
	Snak mainSnak = Datamodel.makeValueSnak(propertyId, value);
	Claim claim = Datamodel.makeClaim(subject, mainSnak,
			Collections.<SnakGroup> emptyList());
	Statement statement = Datamodel.makeStatement(claim,
			Collections.<Reference> emptyList(), StatementRank.NORMAL,
			"stmtid");

	this.rdfConverter.writeStatement(statement);
	this.rdfWriter.finish();
	Model model = RdfTestHelpers.parseRdf(this.out.toString());
	assertEquals(model, RdfTestHelpers.parseRdf(RdfTestHelpers
			.getResourceFromFile("StatementMusicBrainz.rdf")));
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:24,代码来源:RdfConverterTest.java


示例8: testFreebaseStatement

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test
public void testFreebaseStatement() throws RDFHandlerException,
		RDFParseException, IOException {

	ItemIdValue subject = Datamodel.makeItemIdValue("Q100",
			Datamodel.SITE_WIKIDATA);
	PropertyIdValue propertyId = Datamodel
			.makeWikidataPropertyIdValue("P646");
	StringValue value = Datamodel.makeStringValue("/m/0j9kvph");
	Snak mainSnak = Datamodel.makeValueSnak(propertyId, value);
	Claim claim = Datamodel.makeClaim(subject, mainSnak,
			Collections.<SnakGroup> emptyList());
	Statement statement = Datamodel.makeStatement(claim,
			Collections.<Reference> emptyList(), StatementRank.NORMAL,
			"stmtid");

	this.rdfConverter.writeStatement(statement);
	this.rdfWriter.finish();
	Model model = RdfTestHelpers.parseRdf(this.out.toString());
	assertEquals(model, RdfTestHelpers.parseRdf(RdfTestHelpers
			.getResourceFromFile("StatementFreebase.rdf")));
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:23,代码来源:RdfConverterTest.java


示例9: testSimplePropertyDocumentBuild

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test
public void testSimplePropertyDocumentBuild() {
	MonolingualTextValue mtv = Datamodel.makeMonolingualTextValue("Test",
			"de");

	PropertyDocument pd1 = Datamodel.makePropertyDocument(
			PropertyIdValue.NULL, Collections.singletonList(mtv),
			Collections.<MonolingualTextValue> emptyList(),
			Collections.<MonolingualTextValue> emptyList(),
			Collections.<StatementGroup> emptyList(),
			Datamodel.makeDatatypeIdValue(DatatypeIdValue.DT_ITEM));

	PropertyDocument pd2 = PropertyDocumentBuilder
			.forPropertyIdAndDatatype(PropertyIdValue.NULL,
					DatatypeIdValue.DT_ITEM).withLabel(mtv).build();

	assertEquals(pd1, pd2);
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:19,代码来源:PropertyDocumentBuilderTest.java


示例10: testWriteUnboundedQuantityValue

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test
public void testWriteUnboundedQuantityValue() throws RDFHandlerException,
		RDFParseException, IOException {
	QuantityValueConverter valueConverter = new QuantityValueConverter(
			this.rdfWriter, this.propertyRegister, this.rdfConversionBuffer);

	QuantityValue value = this.objectFactory.getQuantityValue(new BigDecimal(100));
	PropertyIdValue propertyIdValue = objectFactory.getPropertyIdValue(
			"P1081", "http://www.wikidata.org/entity/");
	Value valueURI = valueConverter.getRdfValue(value, propertyIdValue,
			false);
	valueConverter.writeValue(value, (Resource) valueURI);
	this.rdfWriter.finish();
	Model model = RdfTestHelpers.parseRdf(this.out.toString());
	assertEquals(model, RdfTestHelpers.parseRdf(RdfTestHelpers
			.getResourceFromFile("UnboundedQuantityValue.rdf")));
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:18,代码来源:ValueRdfConverterTest.java


示例11: testWriteGlobeCoordinatesValue

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test
public void testWriteGlobeCoordinatesValue() throws RDFHandlerException,
		RDFParseException, IOException {
	GlobeCoordinatesValueConverter valueConverter = new GlobeCoordinatesValueConverter(
			this.rdfWriter, this.propertyRegister, this.rdfConversionBuffer);

	GlobeCoordinatesValue value = this.objectFactory
			.getGlobeCoordinatesValue(51.033333333333, 13.733333333333,
					(GlobeCoordinatesValue.PREC_DECI_DEGREE),
					"http://www.wikidata.org/entity/Q2");
	PropertyIdValue propertyIdValue = objectFactory.getPropertyIdValue(
			"P625", "http://www.wikidata.org/entity/");
	Value valueURI = valueConverter.getRdfValue(value, propertyIdValue,
			false);
	valueConverter.writeValue(value, (Resource) valueURI);
	this.rdfWriter.finish();
	Model model = RdfTestHelpers.parseRdf(this.out.toString());
	assertEquals(model, RdfTestHelpers.parseRdf(RdfTestHelpers
			.getResourceFromFile("GlobeCoordinatesValue.rdf")));
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:21,代码来源:ValueRdfConverterTest.java


示例12: testWriteTimeValue

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test
public void testWriteTimeValue() throws RDFHandlerException,
		RDFParseException, IOException {
	TimeValueConverter valueConverter = new TimeValueConverter(
			this.rdfWriter, this.propertyRegister, this.rdfConversionBuffer);

	TimeValue value = objectFactory.getTimeValue(2008, (byte) 1, (byte) 1,
			(byte) 0, (byte) 0, (byte) 0, (byte) 9, 0, 0, 0,
			"http://www.wikidata.org/entity/Q1985727");
	PropertyIdValue propertyIdValue = objectFactory.getPropertyIdValue(
			"P569", "http://www.wikidata.org/entity/");
	Value valueURI = valueConverter.getRdfValue(value, propertyIdValue,
			false);
	valueConverter.writeValue(value, (Resource) valueURI);
	this.rdfWriter.finish();
	Model model = RdfTestHelpers.parseRdf(this.out.toString());
	assertEquals(model, RdfTestHelpers.parseRdf(RdfTestHelpers
			.getResourceFromFile("TimeValue.rdf")));
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:20,代码来源:ValueRdfConverterTest.java


示例13: statementListRequiresSameProperty

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test(expected = IllegalArgumentException.class)
public void statementListRequiresSameProperty() {
	List<Statement> statements = new ArrayList<Statement>();

	statements.add(statement1);

	PropertyIdValue property2 = new PropertyIdValueImpl("P23", "http://wikidata.org/entity/");
	Snak mainSnak = new NoValueSnakImpl(property2);
	Claim claim = new ClaimImpl(subject, mainSnak,
			Collections.<SnakGroup> emptyList());
	Statement s2 = new StatementImpl(claim,
			Collections.<Reference> emptyList(), StatementRank.NORMAL,
			"MyId");
	statements.add(s2);

	new StatementGroupImpl(statements);
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:18,代码来源:StatementGroupTest.java


示例14: countCooccurringProperties

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
/**
 * Counts each property for which there is a statement in the given item
 * document, ignoring the property thisPropertyIdValue to avoid properties
 * counting themselves.
 *
 * @param statementDocument
 * @param usageRecord
 * @param thisPropertyIdValue
 */
private void countCooccurringProperties(
		StatementDocument statementDocument, UsageRecord usageRecord,
		PropertyIdValue thisPropertyIdValue) {
	for (StatementGroup sg : statementDocument.getStatementGroups()) {
		if (!sg.getProperty().equals(thisPropertyIdValue)) {
			Integer propertyId = getNumId(sg.getProperty().getId(), false);
			if (!usageRecord.propertyCoCounts.containsKey(propertyId)) {
				usageRecord.propertyCoCounts.put(propertyId, 1);
			} else {
				usageRecord.propertyCoCounts.put(propertyId,
						usageRecord.propertyCoCounts.get(propertyId) + 1);
			}
		}
	}
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:25,代码来源:SchemaUsageAnalyzer.java


示例15: testQualifierList

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test
public void testQualifierList() {
	ItemIdValue i = ItemIdValue.NULL;
	PropertyIdValue p = PropertyIdValue.NULL;

	Snak q1 = Datamodel.makeSomeValueSnak(p);
	Snak q2 = Datamodel.makeNoValueSnak(p);
	Snak q3 = Datamodel.makeValueSnak(p, i);
	SnakGroup sg = Datamodel.makeSnakGroup(Arrays.asList(q1, q2, q3));

	Reference r = Datamodel.makeReference(Collections.singletonList(sg));

	Statement stmt1 = Datamodel.makeStatement(Datamodel.makeClaim(i,
			Datamodel.makeValueSnak(p, i), Collections.singletonList(sg)),
			Collections.singletonList(r), StatementRank.PREFERRED, "id");
	Statement stmt2 = StatementBuilder.forSubjectAndProperty(i, p)
			.withRank(StatementRank.PREFERRED).withValue(i)
			.withQualifiers(stmt1.getClaim().getQualifiers()).withId("id")
			.withReference(r).build();

	assertEquals(stmt1, stmt2);
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:23,代码来源:StatementBuilderTest.java


示例16: testComplexStatement

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
@Test
public void testComplexStatement() {
	ItemIdValue i = ItemIdValue.NULL;
	PropertyIdValue p = PropertyIdValue.NULL;

	Snak q1 = Datamodel.makeSomeValueSnak(p);
	Snak q2 = Datamodel.makeNoValueSnak(p);
	Snak q3 = Datamodel.makeValueSnak(p, i);
	SnakGroup sg = Datamodel.makeSnakGroup(Arrays.asList(q1, q2, q3));

	Reference r = Datamodel.makeReference(Collections.singletonList(sg));

	Statement stmt1 = Datamodel.makeStatement(Datamodel.makeClaim(i,
			Datamodel.makeValueSnak(p, i), Collections.singletonList(sg)),
			Collections.singletonList(r), StatementRank.PREFERRED, "id");
	Statement stmt2 = StatementBuilder.forSubjectAndProperty(i, p)
			.withRank(StatementRank.PREFERRED).withValue(i)
			.withQualifierSomeValue(p).withQualifierNoValue(p)
			.withQualifierValue(p, i).withId("id").withReference(r).build();

	assertEquals(stmt1, stmt2);
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit,代码行数:23,代码来源:StatementBuilderTest.java


示例17: addPropertyCounters

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
/**
 * Initializes the counters for a property to zero if not done yet.
 *
 * @param usageStatistics
 *            statistics object to initialize
 * @param property
 *            the property to count
 */
private void addPropertyCounters(UsageStatistics usageStatistics,
		PropertyIdValue property) {
	if (!usageStatistics.propertyCountsMain.containsKey(property)) {
		usageStatistics.propertyCountsMain.put(property, 0);
		usageStatistics.propertyCountsQualifier.put(property, 0);
		usageStatistics.propertyCountsReferences.put(property, 0);
	}
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit-Examples,代码行数:17,代码来源:EntityStatisticsProcessor.java


示例18: getPropertyRecord

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
/**
 * Returns record where statistics about a property should be stored.
 *
 * @param property
 *            the property to initialize
 * @return the property record
 */
private PropertyRecord getPropertyRecord(PropertyIdValue property) {
	if (!this.propertyRecords.containsKey(property)) {
		PropertyRecord propertyRecord = new PropertyRecord();
		this.propertyRecords.put(property, propertyRecord);
		return propertyRecord;
	} else {
		return this.propertyRecords.get(property);
	}
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit-Examples,代码行数:17,代码来源:ClassPropertyUsageAnalyzer.java


示例19: countCooccurringProperties

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
private void countCooccurringProperties(ItemDocument itemDocument,
		UsageRecord usageRecord, PropertyIdValue thisPropertyIdValue) {
	for (StatementGroup sg : itemDocument.getStatementGroups()) {
		if (!sg.getProperty().equals(thisPropertyIdValue)) {
			if (!usageRecord.propertyCoCounts.containsKey(sg.getProperty())) {
				usageRecord.propertyCoCounts.put(sg.getProperty(), 1);
			} else {
				usageRecord.propertyCoCounts
						.put(sg.getProperty(), usageRecord.propertyCoCounts
								.get(sg.getProperty()) + 1);
			}
		}
	}
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit-Examples,代码行数:15,代码来源:ClassPropertyUsageAnalyzer.java


示例20: printPropertyRecord

import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; //导入依赖的package包/类
/**
 * Prints the data of one property to the given output. This will be a
 * single line in CSV.
 *
 * @param out
 *            the output to write to
 * @param propertyRecord
 *            the data to write
 * @param propertyIdValue
 *            the property that the data refers to
 */
private void printPropertyRecord(PrintStream out,
		PropertyRecord propertyRecord, PropertyIdValue propertyIdValue) {

	printTerms(out, propertyRecord.propertyDocument, propertyIdValue, null);

	String datatype = "Unknown";
	if (propertyRecord.propertyDocument != null) {
		datatype = getDatatypeLabel(propertyRecord.propertyDocument
				.getDatatype());
	}

	out.print(","
			+ datatype
			+ ","
			+ propertyRecord.statementCount
			+ ","
			+ propertyRecord.itemCount
			+ ","
			+ propertyRecord.statementWithQualifierCount
			+ ","
			+ propertyRecord.qualifierCount
			+ ","
			+ propertyRecord.referenceCount
			+ ","
			+ (propertyRecord.statementCount
					+ propertyRecord.qualifierCount + propertyRecord.referenceCount));

	printRelatedProperties(out, propertyRecord);

	out.println("");
}
 
开发者ID:Wikidata,项目名称:Wikidata-Toolkit-Examples,代码行数:43,代码来源:ClassPropertyUsageAnalyzer.java



注:本文中的org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java MenuSheetView类代码示例发布时间:2022-05-22
下一篇:
Java ISolarLevel类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap