question
stringlengths
33
1.59k
target
stringlengths
33
1.58k
public ListGroupMembersResult listGroupMembers ( ListGroupMembersRequest request ) { request = beforeClientExecution ( request ) ; return executeListGroupMembers ( request ) ; }
public virtual ListGroupMembersResponse ListGroupMembers ( ListGroupMembersRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListGroupMembersRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListGroupMembersResponseUnmarshaller . Instance ; return Invoke < ListGroupMembersResponse > ( request , options ) ; }
public CreateMatchmakingConfigurationResult createMatchmakingConfiguration ( CreateMatchmakingConfigurationRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateMatchmakingConfiguration ( request ) ; }
public virtual CreateMatchmakingConfigurationResponse CreateMatchmakingConfiguration ( CreateMatchmakingConfigurationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateMatchmakingConfigurationRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateMatchmakingConfigurationResponseUnmarshaller . Instance ; return Invoke < CreateMatchmakingConfigurationResponse > ( request , options ) ; }
public GetQueryResultsResult getQueryResults ( GetQueryResultsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetQueryResults ( request ) ; }
public virtual GetQueryResultsResponse GetQueryResults ( GetQueryResultsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetQueryResultsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetQueryResultsResponseUnmarshaller . Instance ; return Invoke < GetQueryResultsResponse > ( request , options ) ; }
public int [ ] lookupSegmentation ( int phraseID ) { return segmentations [ phraseID ] ; }
public int [ ] LookupSegmentation ( int phraseID ) { return segmentations [ phraseID ] ; }
public StartTextTranslationJobResult startTextTranslationJob ( StartTextTranslationJobRequest request ) { request = beforeClientExecution ( request ) ; return executeStartTextTranslationJob ( request ) ; }
public virtual StartTextTranslationJobResponse StartTextTranslationJob ( StartTextTranslationJobRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = StartTextTranslationJobRequestMarshaller . Instance ; options . ResponseUnmarshaller = StartTextTranslationJobResponseUnmarshaller . Instance ; return Invoke < StartTextTranslationJobResponse > ( request , options ) ; }
public final ValueEval evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 ) { double val ; try { ValueEval ve = OperandResolver . getSingleValue ( arg0 , srcRowIndex , srcColumnIndex ) ; val = OperandResolver . coerceValueToDouble ( ve ) ; } catch ( EvaluationException e ) { return e . getErrorEval ( ) ; } if ( val < 0 ) { return ErrorEval . NUM_ERROR ; } return new NumberEval ( getCalField ( val ) ) ; }
public override ValueEval Evaluate ( int srcRowIndex , int srcColumnIndex , ValueEval arg0 ) { double val ; try { ValueEval ve = OperandResolver . GetSingleValue ( arg0 , srcRowIndex , srcColumnIndex ) ; val = OperandResolver . CoerceValueToDouble ( ve ) ; } catch ( EvaluationException e ) { return e . GetErrorEval ( ) ; } if ( val < 0 ) { return ErrorEval . NUM_ERROR ; } return new NumberEval ( GetCalField ( val ) ) ; }
public GetAutoSnapshotsResult getAutoSnapshots ( GetAutoSnapshotsRequest request ) { request = beforeClientExecution ( request ) ; return executeGetAutoSnapshots ( request ) ; }
public virtual GetAutoSnapshotsResponse GetAutoSnapshots ( GetAutoSnapshotsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetAutoSnapshotsRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetAutoSnapshotsResponseUnmarshaller . Instance ; return Invoke < GetAutoSnapshotsResponse > ( request , options ) ; }
public RestoreDBInstanceToPointInTimeRequest ( String sourceDBInstanceIdentifier , String targetDBInstanceIdentifier ) { setSourceDBInstanceIdentifier ( sourceDBInstanceIdentifier ) ; setTargetDBInstanceIdentifier ( targetDBInstanceIdentifier ) ; }
public RestoreDBInstanceToPointInTimeRequest ( string sourceDBInstanceIdentifier , string targetDBInstanceIdentifier ) { _sourceDBInstanceIdentifier = sourceDBInstanceIdentifier ; _targetDBInstanceIdentifier = targetDBInstanceIdentifier ; }
public boolean isDryRun ( ) { return dryRun ; }
public virtual bool IsDryRun ( ) { return dryRun ; }
public static boolean equals ( Object [ ] array1 , Object [ ] array2 ) { if ( array1 == array2 ) { return true ; } if ( array1 == null || array2 == null || array1 . length != array2 . length ) { return false ; } for ( int i = 0 ; i < array1 . length ; i ++ ) { Object e1 = array1 [ i ] , e2 = array2 [ i ] ; if ( ! ( e1 == null ? e2 == null : e1 . equals ( e2 ) ) ) { return false ; } } return true ; }
public static bool equals ( object [ ] array1 , object [ ] array2 ) { if ( array1 == array2 ) { return true ; } if ( array1 == null || array2 == null || array1 . Length != array2 . Length ) { return false ; } { for ( int i = 0 ; i < array1 . Length ; i ++ ) { object e1 = array1 [ i ] ; object e2 = array2 [ i ] ; if ( ! ( e1 == null ? e2 == null : e1 . Equals ( e2 ) ) ) { return false ; } } } return true ; }
public boolean isSame ( Formula other ) { return Arrays . equals ( _byteEncoding , other . _byteEncoding ) ; }
public bool IsSame ( Formula other ) { return Arrays . Equals ( _byteEncoding , other . _byteEncoding ) ; }
public ObjectId idFor ( TreeFormatter formatter ) { return formatter . computeId ( this ) ; }
public override ObjectId IdFor ( TreeFormatter formatter ) { return Delegate ( ) . IdFor ( formatter ) ; }
public static int [ ] grow ( int [ ] array ) { return grow ( array , 1 + array . length ) ; }
public static int [ ] Grow ( int [ ] array ) { return Grow ( array , 1 + array . Length ) ; }
public DescribeReservedDBInstancesResult describeReservedDBInstances ( DescribeReservedDBInstancesRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeReservedDBInstances ( request ) ; }
public virtual DescribeReservedDBInstancesResponse DescribeReservedDBInstances ( DescribeReservedDBInstancesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeReservedDBInstancesRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeReservedDBInstancesResponseUnmarshaller . Instance ; return Invoke < DescribeReservedDBInstancesResponse > ( request , options ) ; }
public String toString ( ) { StringBuilder b = new StringBuilder ( ) ; b . append ( subs . length ) . append ( " subs: " ) ; for ( int i = 0 ; i < subs . length ; i ++ ) { if ( i != 0 ) { b . append ( "; " ) ; } if ( subs [ i ] == null ) { b . append ( "s=" ) . append ( starts [ i ] ) . append ( " l=null" ) ; } else { b . append ( "s=" ) . append ( starts [ i ] ) . append ( " l=" ) . append ( subs [ i ] . length ( ) ) . append ( " b=" ) . append ( subs [ i ] ) ; } } b . append ( " end=" ) . append ( starts [ subs . length ] ) ; return b . toString ( ) ; }
public override string ToString ( ) { StringBuilder b = new StringBuilder ( ) ; b . Append ( subs . Length + " subs: " ) ; for ( int i = 0 ; i < subs . Length ; i ++ ) { if ( i != 0 ) { b . Append ( "; " ) ; } if ( subs [ i ] == null ) { b . Append ( "s=" + starts [ i ] + " l=null" ) ; } else { b . Append ( "s=" + starts [ i ] + " l=" + subs [ i ] . Length + " b=" + subs [ i ] ) ; } } b . Append ( " end=" + starts [ subs . Length ] ) ; return b . ToString ( ) ; }
public DescribeLogStreamsRequest ( String logGroupName ) { setLogGroupName ( logGroupName ) ; }
public DescribeLogStreamsRequest ( string logGroupName ) { _logGroupName = logGroupName ; }
public static String [ ] getAll ( ) { return _formats . clone ( ) ; }
public static String [ ] GetAll ( ) { return ( String [ ] ) _formats . Clone ( ) ; }
public CreateVoiceTemplateResult createVoiceTemplate ( CreateVoiceTemplateRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateVoiceTemplate ( request ) ; }
public virtual CreateVoiceTemplateResponse CreateVoiceTemplate ( CreateVoiceTemplateRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateVoiceTemplateRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateVoiceTemplateResponseUnmarshaller . Instance ; return Invoke < CreateVoiceTemplateResponse > ( request , options ) ; }
public static long getLastCommitGeneration ( Directory directory ) throws IOException { return getLastCommitGeneration ( directory . listAll ( ) ) ; }
public static long GetLastCommitGeneration ( Directory directory ) { try { return GetLastCommitGeneration ( directory . ListAll ( ) ) ; } catch ( DirectoryNotFoundException ) { return - 1 ; } }
public SearchTransitGatewayRoutesResult searchTransitGatewayRoutes ( SearchTransitGatewayRoutesRequest request ) { request = beforeClientExecution ( request ) ; return executeSearchTransitGatewayRoutes ( request ) ; }
public virtual SearchTransitGatewayRoutesResponse SearchTransitGatewayRoutes ( SearchTransitGatewayRoutesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = SearchTransitGatewayRoutesRequestMarshaller . Instance ; options . ResponseUnmarshaller = SearchTransitGatewayRoutesResponseUnmarshaller . Instance ; return Invoke < SearchTransitGatewayRoutesResponse > ( request , options ) ; }
public ListCompilationJobsResult listCompilationJobs ( ListCompilationJobsRequest request ) { request = beforeClientExecution ( request ) ; return executeListCompilationJobs ( request ) ; }
public virtual ListCompilationJobsResponse ListCompilationJobs ( ListCompilationJobsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListCompilationJobsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListCompilationJobsResponseUnmarshaller . Instance ; return Invoke < ListCompilationJobsResponse > ( request , options ) ; }
public static Query createJoinQuery ( String fromField , boolean multipleValuesPerDocument , String toField , Query fromQuery , IndexSearcher fromSearcher , ScoreMode scoreMode ) throws IOException { final GenericTermsCollector termsWithScoreCollector ; if ( multipleValuesPerDocument ) { Function < SortedSetDocValues > mvFunction = DocValuesTermsCollector . sortedSetDocValues ( fromField ) ; termsWithScoreCollector = GenericTermsCollector . createCollectorMV ( mvFunction , scoreMode ) ; } else { Function < BinaryDocValues > svFunction = DocValuesTermsCollector . binaryDocValues ( fromField ) ; termsWithScoreCollector = GenericTermsCollector . createCollectorSV ( svFunction , scoreMode ) ; } return createJoinQuery ( multipleValuesPerDocument , toField , fromQuery , fromField , fromSearcher , scoreMode , termsWithScoreCollector ) ; }
public static Query CreateJoinQuery ( string fromField , bool multipleValuesPerDocument , string toField , Query fromQuery , IndexSearcher fromSearcher , ScoreMode scoreMode ) { switch ( scoreMode ) { case ScoreMode . None : TermsCollector termsCollector = TermsCollector . Create ( fromField , multipleValuesPerDocument ) ; fromSearcher . Search ( fromQuery , termsCollector ) ; return new TermsQuery ( toField , fromQuery , termsCollector . CollectorTerms ) ; case ScoreMode . Total : case ScoreMode . Max : case ScoreMode . Avg : TermsWithScoreCollector termsWithScoreCollector = TermsWithScoreCollector . Create ( fromField , multipleValuesPerDocument , scoreMode ) ; fromSearcher . Search ( fromQuery , termsWithScoreCollector ) ; return new TermsIncludingScoreQuery ( toField , multipleValuesPerDocument , termsWithScoreCollector . CollectedTerms , termsWithScoreCollector . ScoresPerTerm , fromQuery ) ; default : throw new System . ArgumentException ( string . Format ( "Score mode {0} isn't supported." , scoreMode ) ) ; } }
public int serialize ( int offset , byte [ ] data , EscherSerializationListener listener ) { listener . beforeRecordSerialize ( offset , getRecordId ( ) , this ) ; LittleEndian . putShort ( data , offset , getOptions ( ) ) ; LittleEndian . putShort ( data , offset + 2 , getRecordId ( ) ) ; System . arraycopy ( field_pictureData , 0 , data , offset + 4 , field_pictureData . length ) ; listener . afterRecordSerialize ( offset + 4 + field_pictureData . length , getRecordId ( ) , field_pictureData . length + 4 , this ) ; return field_pictureData . length + 4 ; }
public override int Serialize ( int offset , byte [ ] data , EscherSerializationListener listener ) { listener . BeforeRecordSerialize ( offset , RecordId , this ) ; LittleEndian . PutShort ( data , offset , Options ) ; LittleEndian . PutShort ( data , offset + 2 , RecordId ) ; Array . Copy ( field_pictureData , 0 , data , offset + 4 , field_pictureData . Length ) ; listener . AfterRecordSerialize ( offset + 4 + field_pictureData . Length , RecordId , field_pictureData . Length + 4 , this ) ; return field_pictureData . Length + 4 ; }
public SeekStatus seekCeil ( BytesRef term ) { final int ord = findTerm ( term ) ; if ( ord >= 0 ) { termOrd = ord ; setTerm ( ) ; return SeekStatus . FOUND ; } else if ( ord == - terms . length - 1 ) { return SeekStatus . END ; } else { termOrd = - ord - 1 ; setTerm ( ) ; return SeekStatus . NOT_FOUND ; } }
public override SeekStatus SeekCeil ( BytesRef term ) { int ord = FindTerm ( term ) ; if ( ord >= 0 ) { termOrd = ord ; SetTerm ( ) ; return SeekStatus . FOUND ; } else if ( ord == - outerInstance . terms . Length - 1 ) { return SeekStatus . END ; } else { termOrd = - ord - 1 ; SetTerm ( ) ; return SeekStatus . NOT_FOUND ; } }
public DeleteLoadBalancerResult deleteLoadBalancer ( DeleteLoadBalancerRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteLoadBalancer ( request ) ; }
public virtual DeleteLoadBalancerResponse DeleteLoadBalancer ( DeleteLoadBalancerRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteLoadBalancerRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteLoadBalancerResponseUnmarshaller . Instance ; return Invoke < DeleteLoadBalancerResponse > ( request , options ) ; }
public DeleteVpcPeeringAuthorizationResult deleteVpcPeeringAuthorization ( DeleteVpcPeeringAuthorizationRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteVpcPeeringAuthorization ( request ) ; }
public virtual DeleteVpcPeeringAuthorizationResponse DeleteVpcPeeringAuthorization ( DeleteVpcPeeringAuthorizationRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteVpcPeeringAuthorizationRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteVpcPeeringAuthorizationResponseUnmarshaller . Instance ; return Invoke < DeleteVpcPeeringAuthorizationResponse > ( request , options ) ; }
public SendAnnouncementResult sendAnnouncement ( SendAnnouncementRequest request ) { request = beforeClientExecution ( request ) ; return executeSendAnnouncement ( request ) ; }
public virtual SendAnnouncementResponse SendAnnouncement ( SendAnnouncementRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = SendAnnouncementRequestMarshaller . Instance ; options . ResponseUnmarshaller = SendAnnouncementResponseUnmarshaller . Instance ; return Invoke < SendAnnouncementResponse > ( request , options ) ; }
@ Override public int lastIndexOf ( Object object ) { final int size ; final Object [ ] array ; synchronized ( mutex ) { size = list . size ( ) ; array = new Object [ size ] ; list . toArray ( array ) ; } if ( object != null ) { for ( int i = size - 1 ; i >= 0 ; i -- ) { if ( object . equals ( array [ i ] ) ) { return i ; } } } else { for ( int i = size - 1 ; i >= 0 ; i -- ) { if ( array [ i ] == null ) { return i ; } } } return - 1 ; }
public virtual int lastIndexOf ( object @ object ) { int size_1 ; object [ ] array ; lock ( mutex ) { size_1 = list . size ( ) ; array = new object [ size_1 ] ; list . toArray ( array ) ; } if ( @ object != null ) { { for ( int i = size_1 - 1 ; i >= 0 ; i -- ) { if ( @ object . Equals ( array [ i ] ) ) { return i ; } } } } else { { for ( int i = size_1 - 1 ; i >= 0 ; i -- ) { if ( array [ i ] == null ) { return i ; } } } } return - 1 ; }
public SortedDocValues getSortedDocValues ( String field ) { return getSortedDocValues ( field , DocValuesType . SORTED ) ; }
public override SortedDocValues GetSortedDocValues ( string field ) { return null ; }
public void setBaseline ( ) { setBaseline ( clock . get ( ) ) ; }
public virtual void SetBaseline ( ) { SetBaseline ( clock . Get ( ) ) ; }
public final IntBuffer put ( int [ ] src , int srcOffset , int intCount ) { throw new ReadOnlyBufferException ( ) ; }
public sealed override java . nio . IntBuffer put ( int [ ] src , int srcOffset , int intCount ) { throw new java . nio . ReadOnlyBufferException ( ) ; }
public SortingBits ( final Bits in , Sorter . DocMap docMap ) { this . in = in ; this . docMap = docMap ; }
public SortingBits ( IBits input , Sorter . DocMap docMap ) { this . @ in = input ; this . docMap = docMap ; }
public static String quoteEscape ( String original ) { String result = original ; if ( result . indexOf ( '\"' ) >= 0 ) { result = result . replace ( "\"" , ESCAPED_QUOTE ) ; } if ( result . indexOf ( COMMA ) >= 0 ) { result = "\"" + result + "\"" ; } return result ; }
public static string QuoteEscape ( string original ) { string result = original ; if ( result . IndexOf ( '\"' ) >= 0 ) { result . Replace ( "\"" , ESCAPED_QUOTE ) ; } if ( result . IndexOf ( COMMA ) >= 0 ) { result = "\"" + result + "\"" ; } return result ; }
public static double fv ( double r , double n , double y , double p , boolean t ) { double retval = 0 ; if ( r == 0 ) { retval = - 1 * ( p + ( n * y ) ) ; } else { double r1 = r + 1 ; retval = ( ( 1 - Math . pow ( r1 , n ) ) * ( t ? r1 : 1 ) * y ) / r - p * Math . pow ( r1 , n ) ; } return retval ; }
public static double fv ( double r , double n , double y , double p , bool t ) { double retval = 0 ; if ( r == 0 ) { retval = - 1 * ( p + ( n * y ) ) ; } else { double r1 = r + 1 ; retval = ( ( 1 - Math . Pow ( r1 , n ) ) * ( t ? r1 : 1 ) * y ) / r - p * Math . Pow ( r1 , n ) ; } return retval ; }
public CharBuffer put ( int index , char c ) { throw new ReadOnlyBufferException ( ) ; }
public override java . nio . CharBuffer put ( int index , char c ) { throw new java . nio . ReadOnlyBufferException ( ) ; }
public UpdateLifecyclePolicyResult updateLifecyclePolicy ( UpdateLifecyclePolicyRequest request ) { request = beforeClientExecution ( request ) ; return executeUpdateLifecyclePolicy ( request ) ; }
public virtual UpdateLifecyclePolicyResponse UpdateLifecyclePolicy ( UpdateLifecyclePolicyRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = UpdateLifecyclePolicyRequestMarshaller . Instance ; options . ResponseUnmarshaller = UpdateLifecyclePolicyResponseUnmarshaller . Instance ; return Invoke < UpdateLifecyclePolicyResponse > ( request , options ) ; }
public CreateNotebookInstanceLifecycleConfigResult createNotebookInstanceLifecycleConfig ( CreateNotebookInstanceLifecycleConfigRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateNotebookInstanceLifecycleConfig ( request ) ; }
public virtual CreateNotebookInstanceLifecycleConfigResponse CreateNotebookInstanceLifecycleConfig ( CreateNotebookInstanceLifecycleConfigRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateNotebookInstanceLifecycleConfigRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateNotebookInstanceLifecycleConfigResponseUnmarshaller . Instance ; return Invoke < CreateNotebookInstanceLifecycleConfigResponse > ( request , options ) ; }
public boolean add ( String text ) { return map . put ( text , PLACEHOLDER ) == null ; }
public virtual bool Add ( string text ) { return map . Put ( text ) ; }
public void serialize ( LittleEndianOutput out ) { out . writeShort ( field_1_axisType ) ; out . writeInt ( field_2_x ) ; out . writeInt ( field_3_y ) ; out . writeInt ( field_4_width ) ; out . writeInt ( field_5_height ) ; }
public override void Serialize ( ILittleEndianOutput out1 ) { out1 . WriteShort ( field_1_axisType ) ; out1 . WriteInt ( field_2_x ) ; out1 . WriteInt ( field_3_y ) ; out1 . WriteInt ( field_4_width ) ; out1 . WriteInt ( field_5_height ) ; }
public GetJourneyResult getJourney ( GetJourneyRequest request ) { request = beforeClientExecution ( request ) ; return executeGetJourney ( request ) ; }
public virtual GetJourneyResponse GetJourney ( GetJourneyRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = GetJourneyRequestMarshaller . Instance ; options . ResponseUnmarshaller = GetJourneyResponseUnmarshaller . Instance ; return Invoke < GetJourneyResponse > ( request , options ) ; }
public PrecedenceQueryNodeProcessorPipeline ( QueryConfigHandler queryConfig ) { super ( queryConfig ) ; for ( int i = 0 ; i < size ( ) ; i ++ ) { if ( get ( i ) . getClass ( ) . equals ( BooleanQuery2ModifierNodeProcessor . class ) ) { remove ( i -- ) ; } } add ( new BooleanModifiersQueryNodeProcessor ( ) ) ; }
public PrecedenceQueryNodeProcessorPipeline ( QueryConfigHandler queryConfig ) : base ( queryConfig ) { for ( int i = 0 ; i < Count ; i ++ ) { if ( this [ i ] . GetType ( ) . Equals ( typeof ( BooleanQuery2ModifierNodeProcessor ) ) ) { RemoveAt ( i -- ) ; } } Add ( new BooleanModifiersQueryNodeProcessor ( ) ) ; }
public static boolean startsWith ( byte [ ] ref , BytesRef prefix ) { if ( ref . length < prefix . length ) { return false ; } return Arrays . equals ( ref , 0 , prefix . length , prefix . bytes , prefix . offset , prefix . offset + prefix . length ) ; }
public static bool StartsWith ( BytesRef @ ref , BytesRef prefix ) { return SliceEquals ( @ ref , prefix , 0 ) ; }
public DeleteUsageReportSubscriptionResult deleteUsageReportSubscription ( DeleteUsageReportSubscriptionRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteUsageReportSubscription ( request ) ; }
public virtual DeleteUsageReportSubscriptionResponse DeleteUsageReportSubscription ( DeleteUsageReportSubscriptionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteUsageReportSubscriptionRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteUsageReportSubscriptionResponseUnmarshaller . Instance ; return Invoke < DeleteUsageReportSubscriptionResponse > ( request , options ) ; }
public File [ ] listFiles ( FilenameFilter filter ) { return filenamesToFiles ( list ( filter ) ) ; }
public java . io . File [ ] listFiles ( java . io . FilenameFilter filter ) { return filenamesToFiles ( list ( filter ) ) ; }
public void respondActivityTaskFailed ( RespondActivityTaskFailedRequest request ) { request = beforeClientExecution ( request ) ; executeRespondActivityTaskFailed ( request ) ; }
public virtual RespondActivityTaskFailedResponse RespondActivityTaskFailed ( RespondActivityTaskFailedRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RespondActivityTaskFailedRequestMarshaller . Instance ; options . ResponseUnmarshaller = RespondActivityTaskFailedResponseUnmarshaller . Instance ; return Invoke < RespondActivityTaskFailedResponse > ( request , options ) ; }
public ListIdentitiesResult listIdentities ( ) { return listIdentities ( new ListIdentitiesRequest ( ) ) ; }
public virtual ListIdentitiesResponse ListIdentities ( ) { return ListIdentities ( new ListIdentitiesRequest ( ) ) ; }
@ Override public int compare ( T o1 , T o2 ) { Comparable < T > c2 = ( Comparable < T > ) o2 ; return c2 . compareTo ( o1 ) ; }
public int compare ( T o1 , T o2 ) { java . lang . Comparable < T > c2 = ( java . lang . Comparable < T > ) o2 ; return c2 . compareTo ( o1 ) ; }
public ListFindingsResult listFindings ( ListFindingsRequest request ) { request = beforeClientExecution ( request ) ; return executeListFindings ( request ) ; }
public virtual ListFindingsResponse ListFindings ( ListFindingsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListFindingsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListFindingsResponseUnmarshaller . Instance ; return Invoke < ListFindingsResponse > ( request , options ) ; }
public boolean contains ( final int o ) { boolean rval = false ; for ( int j = 0 ; ! rval && ( j < _limit ) ; j ++ ) { if ( _array [ j ] == o ) { rval = true ; } } return rval ; }
public bool Contains ( int o ) { bool rval = false ; for ( int j = 0 ; ! rval && ( j < _limit ) ; j ++ ) { if ( _array [ j ] == o ) { rval = true ; } } return rval ; }
public ValueEval evaluate ( ValueEval [ ] args , int srcRowIndex , int srcColumnIndex ) { if ( args . length < 2 ) { return ErrorEval . VALUE_INVALID ; } try { int ix = evaluateFirstArg ( args [ 0 ] , srcRowIndex , srcColumnIndex ) ; if ( ix < 1 || ix >= args . length ) { return ErrorEval . VALUE_INVALID ; } ValueEval result = OperandResolver . getSingleValue ( args [ ix ] , srcRowIndex , srcColumnIndex ) ; if ( result == MissingArgEval . instance ) { return BlankEval . instance ; } return result ; } catch ( EvaluationException e ) { return e . getErrorEval ( ) ; } }
public ValueEval Evaluate ( ValueEval [ ] args , int srcRowIndex , int srcColumnIndex ) { if ( args . Length < 2 ) { return ErrorEval . VALUE_INVALID ; } try { int ix = EvaluateFirstArg ( args [ 0 ] , srcRowIndex , srcColumnIndex ) ; if ( ix < 1 || ix >= args . Length ) { return ErrorEval . VALUE_INVALID ; } ValueEval result = OperandResolver . GetSingleValue ( args [ ix ] , srcRowIndex , srcColumnIndex ) ; if ( result == MissingArgEval . instance ) { return BlankEval . instance ; } return result ; } catch ( EvaluationException e ) { return e . GetErrorEval ( ) ; } }
public DatRecord clone ( ) { return copy ( ) ; }
public override Object Clone ( ) { DatRecord rec = new DatRecord ( ) ; rec . field_1_options = field_1_options ; return rec ; }
public GlobalReplicationGroup createGlobalReplicationGroup ( CreateGlobalReplicationGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeCreateGlobalReplicationGroup ( request ) ; }
public virtual CreateGlobalReplicationGroupResponse CreateGlobalReplicationGroup ( CreateGlobalReplicationGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = CreateGlobalReplicationGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = CreateGlobalReplicationGroupResponseUnmarshaller . Instance ; return Invoke < CreateGlobalReplicationGroupResponse > ( request , options ) ; }
public String getText ( Interval interval ) { if ( interval . a < 0 || interval . b < interval . a - 1 ) { throw new IllegalArgumentException ( "invalid interval" ) ; } int bufferStartIndex = getBufferStartIndex ( ) ; if ( n > 0 && data [ n - 1 ] == Character . MAX_VALUE ) { if ( interval . a + interval . length ( ) > bufferStartIndex + n ) { throw new IllegalArgumentException ( "the interval extends past the end of the stream" ) ; } } if ( interval . a < bufferStartIndex || interval . b >= bufferStartIndex + n ) { throw new UnsupportedOperationException ( "interval " + interval + " outside buffer: " + bufferStartIndex + ".." + ( bufferStartIndex + n - 1 ) ) ; } int i = interval . a - bufferStartIndex ; return new String ( data , i , interval . length ( ) ) ; }
public virtual string GetText ( Interval interval ) { if ( interval . a < 0 || interval . b < interval . a - 1 ) { throw new ArgumentException ( "invalid interval" ) ; } int bufferStartIndex = BufferStartIndex ; if ( n > 0 && data [ n - 1 ] == IntStreamConstants . EOF ) { if ( interval . a + interval . Length > bufferStartIndex + n ) { throw new ArgumentException ( "the interval extends past the end of the stream" ) ; } } if ( interval . a < bufferStartIndex || interval . b >= bufferStartIndex + n ) { throw new NotSupportedException ( "interval " + interval + " outside buffer: " + bufferStartIndex + ".." + ( bufferStartIndex + n - 1 ) ) ; } int i = interval . a - bufferStartIndex ; var sb = new StringBuilder ( interval . Length ) ; for ( int offset = 0 ; offset < interval . Length ; offset ++ ) { sb . Append ( Char . ConvertFromUtf32 ( data [ i + offset ] ) ) ; } return sb . ToString ( ) ; }
public void addClass ( String chargroup ) { if ( chargroup . length ( ) > 0 ) { char equivChar = chargroup . charAt ( 0 ) ; char [ ] key = new char [ 2 ] ; key [ 1 ] = 0 ; for ( int i = 0 ; i < chargroup . length ( ) ; i ++ ) { key [ 0 ] = chargroup . charAt ( i ) ; classmap . insert ( key , 0 , equivChar ) ; } } }
public virtual void AddClass ( string chargroup ) { if ( chargroup . Length > 0 ) { char equivChar = chargroup [ 0 ] ; char [ ] key = new char [ 2 ] ; key [ 1 ] = ( char ) 0 ; for ( int i = 0 ; i < chargroup . Length ; i ++ ) { key [ 0 ] = chargroup [ i ] ; m_classmap . Insert ( key , 0 , equivChar ) ; } } }
public MultiPhraseQuery build ( ) { int [ ] positionsArray = new int [ this . positions . size ( ) ] ; for ( int i = 0 ; i < this . positions . size ( ) ; ++ i ) { positionsArray [ i ] = this . positions . get ( i ) ; } Term [ ] [ ] termArraysArray = termArrays . toArray ( new Term [ termArrays . size ( ) ] [ ] ) ; return new MultiPhraseQuery ( field , termArraysArray , positionsArray , slop ) ; }
public virtual StemmerOverrideMap Build ( ) { ByteSequenceOutputs outputs = ByteSequenceOutputs . Singleton ; Builder < BytesRef > builder = new Builder < BytesRef > ( FST . INPUT_TYPE . BYTE4 , outputs ) ; int [ ] sort = hash . Sort ( BytesRef . UTF8SortedAsUnicodeComparer ) ; Int32sRef intsSpare = new Int32sRef ( ) ; int size = hash . Count ; for ( int i = 0 ; i < size ; i ++ ) { int id = sort [ i ] ; BytesRef bytesRef = hash . Get ( id , spare ) ; UnicodeUtil . UTF8toUTF32 ( bytesRef , intsSpare ) ; builder . Add ( intsSpare , new BytesRef ( outputValues [ id ] ) ) ; } return new StemmerOverrideMap ( builder . Finish ( ) , ignoreCase ) ; }
public DFRSimilarity ( BasicModel basicModel , AfterEffect afterEffect , Normalization normalization ) { if ( basicModel == null || afterEffect == null || normalization == null ) { throw new NullPointerException ( "null parameters not allowed." ) ; } this . basicModel = basicModel ; this . afterEffect = afterEffect ; this . normalization = normalization ; }
public DFRSimilarity ( BasicModel basicModel , AfterEffect afterEffect , Normalization normalization ) { if ( basicModel == null || afterEffect == null || normalization == null ) { throw new System . NullReferenceException ( "null parameters not allowed." ) ; } this . m_basicModel = basicModel ; this . m_afterEffect = afterEffect ; this . m_normalization = normalization ; }
public ResetSnapshotAttributeRequest ( String snapshotId , SnapshotAttributeName attribute ) { setSnapshotId ( snapshotId ) ; setAttribute ( attribute . toString ( ) ) ; }
public ResetSnapshotAttributeRequest ( string snapshotId , SnapshotAttributeName attribute ) { _snapshotId = snapshotId ; _attribute = attribute ; }
public V get ( CharSequence cs ) { if ( cs == null ) throw new NullPointerException ( ) ; return null ; }
public override V Get ( ICharSequence text ) { if ( text == null ) { throw new ArgumentNullException ( "text" ) ; } return default ( V ) ; }
public String getScheme ( ) { return scheme ; }
public string getScheme ( ) { return scheme ; }
public void seekExact ( long ord ) { throw new UnsupportedOperationException ( ) ; }
public override void SeekExact ( long ord ) { throw new System . NotSupportedException ( ) ; }
public XPathElement ( String nodeName ) { this . nodeName = nodeName ; }
public XPathElement ( string nodeName ) { this . nodeName = nodeName ; }
public DeleteAccountResult deleteAccount ( DeleteAccountRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteAccount ( request ) ; }
public virtual DeleteAccountResponse DeleteAccount ( DeleteAccountRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteAccountRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteAccountResponseUnmarshaller . Instance ; return Invoke < DeleteAccountResponse > ( request , options ) ; }
public boolean matches ( ParseTree tree , ParseTreePattern pattern ) { MultiMap < String , ParseTree > labels = new MultiMap < String , ParseTree > ( ) ; ParseTree mismatchedNode = matchImpl ( tree , pattern . getPatternTree ( ) , labels ) ; return mismatchedNode == null ; }
public virtual bool Matches ( IParseTree tree , ParseTreePattern pattern ) { MultiMap < string , IParseTree > labels = new MultiMap < string , IParseTree > ( ) ; IParseTree mismatchedNode = MatchImpl ( tree , pattern . PatternTree , labels ) ; return mismatchedNode == null ; }
public PredictionContext get ( PredictionContext ctx ) { return cache . get ( ctx ) ; }
public PredictionContext Get ( PredictionContext ctx ) { return cache . Get ( ctx ) ; }
public SpotPlacement ( String availabilityZone ) { setAvailabilityZone ( availabilityZone ) ; }
public SpotPlacement ( string availabilityZone ) { _availabilityZone = availabilityZone ; }
public DescribeFleetInstancesResult describeFleetInstances ( DescribeFleetInstancesRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeFleetInstances ( request ) ; }
public virtual DescribeFleetInstancesResponse DescribeFleetInstances ( DescribeFleetInstancesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeFleetInstancesRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeFleetInstancesResponseUnmarshaller . Instance ; return Invoke < DescribeFleetInstancesResponse > ( request , options ) ; }
public void setWorkingTreeIterator ( WorkingTreeIterator workingTreeIterator ) { this . workingTreeIterator = workingTreeIterator ; }
public virtual void SetWorkingTreeIterator ( WorkingTreeIterator workingTreeIterator ) { this . workingTreeIterator = workingTreeIterator ; }
public static long pop_array ( long [ ] arr , int wordOffset , int numWords ) { long popCount = 0 ; for ( int i = wordOffset , end = wordOffset + numWords ; i < end ; ++ i ) { popCount += Long . bitCount ( arr [ i ] ) ; } return popCount ; }
public static long Pop_Array ( long [ ] arr , int wordOffset , int numWords ) { long popCount = 0 ; for ( int i = wordOffset , end = wordOffset + numWords ; i < end ; ++ i ) { popCount += arr [ i ] . PopCount ( ) ; } return popCount ; }
public static FileKey lenient ( File directory , FS fs ) { final File gitdir = resolve ( directory , fs ) ; return new FileKey ( gitdir != null ? gitdir : directory , fs ) ; }
public static RepositoryCache . FileKey Lenient ( FilePath directory , FS fs ) { FilePath gitdir = Resolve ( directory , fs ) ; return new RepositoryCache . FileKey ( gitdir != null ? gitdir : directory , fs ) ; }
public ObjectWalk ( ObjectReader or , int depth ) { super ( or ) ; this . depth = depth ; this . deepenNots = Collections . emptyList ( ) ; this . UNSHALLOW = newFlag ( "UNSHALLOW" ) ; this . REINTERESTING = newFlag ( "REINTERESTING" ) ; this . DEEPEN_NOT = newFlag ( "DEEPEN_NOT" ) ; }
public ObjectWalk ( ObjectReader or , int depth ) : base ( or ) { this . depth = depth ; this . UNSHALLOW = NewFlag ( "UNSHALLOW" ) ; this . REINTERESTING = NewFlag ( "REINTERESTING" ) ; }
public RegisterImageRequest ( String imageLocation ) { setImageLocation ( imageLocation ) ; }
public RegisterImageRequest ( string imageLocation ) { _imageLocation = imageLocation ; }
public void write ( String s ) { reserve ( s . length ( ) ) ; s . getChars ( 0 , s . length ( ) , buf , len ) ; len += s . length ( ) ; }
public virtual void Write ( string s ) { EnsureCapacity ( s . Length ) ; s . CopyTo ( 0 , m_buf , m_len , s . Length - 0 ) ; m_len += s . Length ; }
public RefCountedRevision ( Revision revision ) { this . revision = revision ; }
public RefCountedRevision ( IRevision revision ) { Revision = revision ; }
public ListTagsForResourcesResult listTagsForResources ( ListTagsForResourcesRequest request ) { request = beforeClientExecution ( request ) ; return executeListTagsForResources ( request ) ; }
public virtual ListTagsForResourcesResponse ListTagsForResources ( ListTagsForResourcesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListTagsForResourcesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListTagsForResourcesResponseUnmarshaller . Instance ; return Invoke < ListTagsForResourcesResponse > ( request , options ) ; }
public byte readByte ( ) { return bytes [ pos ++ ] ; }
public override byte ReadByte ( ) { return bytes [ pos ++ ] ; }
public GlobalReplicationGroup deleteGlobalReplicationGroup ( DeleteGlobalReplicationGroupRequest request ) { request = beforeClientExecution ( request ) ; return executeDeleteGlobalReplicationGroup ( request ) ; }
public virtual DeleteGlobalReplicationGroupResponse DeleteGlobalReplicationGroup ( DeleteGlobalReplicationGroupRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DeleteGlobalReplicationGroupRequestMarshaller . Instance ; options . ResponseUnmarshaller = DeleteGlobalReplicationGroupResponseUnmarshaller . Instance ; return Invoke < DeleteGlobalReplicationGroupResponse > ( request , options ) ; }
public IntBuffer asReadOnlyBuffer ( ) { return duplicate ( ) ; }
public override java . nio . IntBuffer asReadOnlyBuffer ( ) { return duplicate ( ) ; }
public DescribeFileSystemPolicyResult describeFileSystemPolicy ( DescribeFileSystemPolicyRequest request ) { request = beforeClientExecution ( request ) ; return executeDescribeFileSystemPolicy ( request ) ; }
public virtual DescribeFileSystemPolicyResponse DescribeFileSystemPolicy ( DescribeFileSystemPolicyRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DescribeFileSystemPolicyRequestMarshaller . Instance ; options . ResponseUnmarshaller = DescribeFileSystemPolicyResponseUnmarshaller . Instance ; return Invoke < DescribeFileSystemPolicyResponse > ( request , options ) ; }
public ListAttributesResult listAttributes ( ListAttributesRequest request ) { request = beforeClientExecution ( request ) ; return executeListAttributes ( request ) ; }
public virtual ListAttributesResponse ListAttributes ( ListAttributesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListAttributesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListAttributesResponseUnmarshaller . Instance ; return Invoke < ListAttributesResponse > ( request , options ) ; }
public ModifyStrategyTargetRequest ( ) { super ( "aegis" , "2016-11-11" , "ModifyStrategyTarget" , "vipaegis" ) ; setMethod ( MethodType . POST ) ; }
public ModifyStrategyTargetRequest ( ) : base ( "aegis" , "2016-11-11" , "ModifyStrategyTarget" , "vipaegis" , "openAPI" ) { Method = MethodType . POST ; }
public void removeFontRecord ( FontRecord rec ) { records . remove ( rec ) ; numfonts -- ; }
public void RemoveFontRecord ( FontRecord rec ) { records . Remove ( rec ) ; numfonts -- ; }
public static Class < ? extends TokenFilterFactory > lookupClass ( String name ) { return loader . lookupClass ( name ) ; }
public static Type LookupClass ( string name ) { return loader . LookupClass ( name ) ; }
public void reset ( TermsEnum terms , BytesRef term ) { this . terms = terms ; current = term ; }
public void Reset ( TermsEnum terms , BytesRef term ) { this . Terms = terms ; Current = term ; }
public LinkedDataRecord getDataValues ( ) { return dataValues ; }
public BRAIRecord GetDataValues ( ) { return dataValues ; }
public synchronized static DefaultProfile getProfile ( String regionId , ICredentialProvider icredential ) { profile = new DefaultProfile ( regionId , icredential ) ; return profile ; }
public static DefaultProfile GetProfile ( string regionId , ICredentialProvider icredential ) { _profile = new DefaultProfile ( regionId , icredential ) ; return _profile ; }
public ListFieldLevelEncryptionProfilesResult listFieldLevelEncryptionProfiles ( ListFieldLevelEncryptionProfilesRequest request ) { request = beforeClientExecution ( request ) ; return executeListFieldLevelEncryptionProfiles ( request ) ; }
public virtual ListFieldLevelEncryptionProfilesResponse ListFieldLevelEncryptionProfiles ( ListFieldLevelEncryptionProfilesRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListFieldLevelEncryptionProfilesRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListFieldLevelEncryptionProfilesResponseUnmarshaller . Instance ; return Invoke < ListFieldLevelEncryptionProfilesResponse > ( request , options ) ; }
public RegisterTaskDefinitionResult registerTaskDefinition ( RegisterTaskDefinitionRequest request ) { request = beforeClientExecution ( request ) ; return executeRegisterTaskDefinition ( request ) ; }
public virtual RegisterTaskDefinitionResponse RegisterTaskDefinition ( RegisterTaskDefinitionRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = RegisterTaskDefinitionRequestMarshaller . Instance ; options . ResponseUnmarshaller = RegisterTaskDefinitionResponseUnmarshaller . Instance ; return Invoke < RegisterTaskDefinitionResponse > ( request , options ) ; }
public String toString ( ) { return String . format ( "type(%d)" , type ) ; }
public override string ToString ( ) { return string . Format ( "type({0})" , type ) ; }
public DisableEnhancedMonitoringResult disableEnhancedMonitoring ( DisableEnhancedMonitoringRequest request ) { request = beforeClientExecution ( request ) ; return executeDisableEnhancedMonitoring ( request ) ; }
public virtual DisableEnhancedMonitoringResponse DisableEnhancedMonitoring ( DisableEnhancedMonitoringRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = DisableEnhancedMonitoringRequestMarshaller . Instance ; options . ResponseUnmarshaller = DisableEnhancedMonitoringResponseUnmarshaller . Instance ; return Invoke < DisableEnhancedMonitoringResponse > ( request , options ) ; }
public NodeHash ( FST < T > fst , FST . BytesReader in ) { table = new PagedGrowableWriter ( 16 , 1 << 27 , 8 , PackedInts . COMPACT ) ; mask = 15 ; this . fst = fst ; this . in = in ; }
public NodeHash ( FST < T > fst , FST . BytesReader input ) { table = new PagedGrowableWriter ( 16 , 1 << 30 , 8 , PackedInt32s . COMPACT ) ; mask = 15 ; this . fst = fst ; this . input = input ; }
public static final String toString ( ObjectId i ) { return i != null ? i . name ( ) : ZEROID_STR ; }
public static string ToString ( NGit . ObjectId i ) { return i != null ? i . Name : ZEROID_STR ; }
public LittleEndianOutput createDelayedOutput ( int size ) { return this ; }
public ILittleEndianOutput CreateDelayedOutput ( int size ) { return this ; }
public String toFormulaString ( FormulaRenderingWorkbook book ) { return book . getNameText ( this ) ; }
public String ToFormulaString ( IFormulaRenderingWorkbook book ) { return book . GetNameText ( this ) ; }
public String toString ( ) { return "<boost value='" + getValueString ( ) + "'>" + "\n" + getChild ( ) . toString ( ) + "\n</boost>" ; }
public override string ToString ( ) { return "<boost value='" + GetValueString ( ) + "'>" + "\n" + Child . ToString ( ) + "\n</boost>" ; }
public ListTagsResult listTags ( ListTagsRequest request ) { request = beforeClientExecution ( request ) ; return executeListTags ( request ) ; }
public virtual ListTagsResponse ListTags ( ListTagsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListTagsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListTagsResponseUnmarshaller . Instance ; return Invoke < ListTagsResponse > ( request , options ) ; }
public ListTypeVersionsResult listTypeVersions ( ListTypeVersionsRequest request ) { request = beforeClientExecution ( request ) ; return executeListTypeVersions ( request ) ; }
public virtual ListTypeVersionsResponse ListTypeVersions ( ListTypeVersionsRequest request ) { var options = new InvokeOptions ( ) ; options . RequestMarshaller = ListTypeVersionsRequestMarshaller . Instance ; options . ResponseUnmarshaller = ListTypeVersionsResponseUnmarshaller . Instance ; return Invoke < ListTypeVersionsResponse > ( request , options ) ; }
public ObjectLinkRecord ( RecordInputStream in ) { field_1_anchorId = in . readShort ( ) ; field_2_link1 = in . readShort ( ) ; field_3_link2 = in . readShort ( ) ; }
public ObjectLinkRecord ( RecordInputStream in1 ) { field_1_anchorId = in1 . ReadShort ( ) ; field_2_link1 = in1 . ReadShort ( ) ; field_3_link2 = in1 . ReadShort ( ) ; }
public String getPromptText ( ) { return promptText ; }
public virtual string GetPromptText ( ) { return promptText ; }
public static String toLowerCase ( String in ) { final StringBuilder r = new StringBuilder ( in . length ( ) ) ; for ( int i = 0 ; i < in . length ( ) ; i ++ ) r . append ( toLowerCase ( in . charAt ( i ) ) ) ; return r . toString ( ) ; }
public static string ToLowerCase ( string @ in ) { StringBuilder r = new StringBuilder ( @ in . Length ) ; for ( int i = 0 ; i < @ in . Length ; i ++ ) { r . Append ( ToLowerCase ( @ in [ i ] ) ) ; } return r . ToString ( ) ; }
public static boolean isBeginRecord ( int sid ) { return sid == UserSViewBegin . sid ; }
public static bool IsBeginRecord ( int sid ) { return sid == UserSViewBegin . sid ; }