com.microsoft.tfs.core.clients.workitem.link
Interface RegisteredLinkTypeCollection

All Superinterfaces:
java.lang.Iterable<RegisteredLinkType>

public interface RegisteredLinkTypeCollection
extends java.lang.Iterable<RegisteredLinkType>

Since:
TEE-SDK-10.1

Method Summary
 boolean contains(RegisteredLinkType linkType)
          Checks whether this collection contains the specified RegisteredLinkType object.
 RegisteredLinkType get(java.lang.String linkTypeName)
          Gets a RegisteredLinkType by name.
 java.util.Iterator<RegisteredLinkType> iterator()
           
 int size()
           
 

Method Detail

iterator

java.util.Iterator<RegisteredLinkType> iterator()
Specified by:
iterator in interface java.lang.Iterable<RegisteredLinkType>
Returns:
an iterator for this collection

size

int size()
Returns:
the number of RegisteredLinkTypes in the collection.

contains

boolean contains(RegisteredLinkType linkType)
Checks whether this collection contains the specified RegisteredLinkType object.

Parameters:
linkType - The RegisteredLinkType object of interest.
Returns:
True if the list contains the specified RegisteredLinkType object; otherwise, false.

get

RegisteredLinkType get(java.lang.String linkTypeName)
Gets a RegisteredLinkType by name.

Parameters:
linkTypeName - the name of the RegisteredLinkType to get (must not be null)
Returns:
the RegisteredLinkType for the specified name


© 2015 Microsoft. All rights reserved.